Skip to content

Commit 16a7fbf

Browse files
authored
Remove preprocessed backslash line continuation (#1024)
2 parents d3dd5d4 + 07a7d20 commit 16a7fbf

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/fpm/git.f90

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -441,11 +441,12 @@ subroutine git_archive(source, destination, ref, additional_files, verbose, erro
441441
endif
442442

443443
call run('git archive '//ref//' &
444-
--format='//archive_format// &
445-
add_files//' \
446-
-o '//destination, \
447-
echo=verbose, \
448-
exitstat=stat)
444+
& --format='//archive_format// &
445+
& add_files//' &
446+
& -o '//destination, &
447+
& echo=verbose, &
448+
& exitstat=stat)
449+
449450
if (stat /= 0) then
450451
call fatal_error(error, "Error packing '"//source//"'."); return
451452
end if

0 commit comments

Comments
 (0)