Skip to content

Commit 9d16e5d

Browse files
urbanjostLKedward
authored andcommitted
change cd NEWNAME;git init to cd NEWNAME &&git init per @LKedward
1 parent 14db071 commit 9d16e5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fpm/src/fpm/cmd/new.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ subroutine cmd_new(settings) ! --with-executable F --with-test F '
102102

103103
call warnwrite(join_path(settings%name, 'fpm.toml'), message) ! now that built it write NAME/fpm.toml
104104

105-
call run('cd ' // settings%name // ';git init') ! assumes these commands work on all systems and git(1) is installed
105+
call run('cd ' // settings%name // '&&git init') ! assumes these commands work on all systems and git(1) is installed
106106
contains
107107

108108
subroutine warnwrite(fname,data)

0 commit comments

Comments
 (0)