aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fpm/src/fpm/cmd/new.f902
1 files changed, 1 insertions, 1 deletions
diff --git a/fpm/src/fpm/cmd/new.f90 b/fpm/src/fpm/cmd/new.f90
index ce00357..dce13bc 100644
--- a/fpm/src/fpm/cmd/new.f90
+++ b/fpm/src/fpm/cmd/new.f90
@@ -118,7 +118,7 @@ character(len=:),allocatable :: littlefile(:)
endif
call warnwrite(join_path(settings%name, 'fpm.toml'), message) ! now that built it write NAME/fpm.toml
- call run('cd ' // settings%name // ';git init') ! assumes these commands work on all systems and git(1) is installed
+ call run('cd ' // settings%name // '&&git init') ! assumes these commands work on all systems and git(1) is installed
contains
subroutine warnwrite(fname,data)