Skip to content

Commit

Permalink
Remove preprocessed backslash line continuation (#1024)
Browse files Browse the repository at this point in the history
  • Loading branch information
perazz authored May 1, 2024
2 parents d3dd5d4 + 07a7d20 commit 16a7fbf
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/fpm/git.f90
Original file line number Diff line number Diff line change
Expand Up @@ -441,11 +441,12 @@ subroutine git_archive(source, destination, ref, additional_files, verbose, erro
endif

call run('git archive '//ref//' &
--format='//archive_format// &
add_files//' \
-o '//destination, \
echo=verbose, \
exitstat=stat)
& --format='//archive_format// &
& add_files//' &
& -o '//destination, &
& echo=verbose, &
& exitstat=stat)

if (stat /= 0) then
call fatal_error(error, "Error packing '"//source//"'."); return
end if
Expand Down

0 comments on commit 16a7fbf

Please sign in to comment.