Skip to content

Commit

Permalink
Workaround for case-insensitive fs
Browse files Browse the repository at this point in the history
  • Loading branch information
perazz committed Apr 9, 2024
1 parent 06678c7 commit cabf328
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ci/fpm-deployment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,10 @@ rm "${prune[@]}"

# Capitalize .f90 -> .F90 for preprocessed files
for pp_source in "${preprocessed[@]}"
do
mv "$pp_source.f90" "$pp_source.F90"
do
# workaround for case-insensitive fs
mv "$pp_source.f90" "$pp_source.rename"
mv "$pp_source.rename" "$pp_source.F90"
done

# List stdlib-fpm package contents
Expand Down

0 comments on commit cabf328

Please sign in to comment.