Skip to content

Commit

Permalink
fpm deployment: enable case-insensitive fs (#790)
Browse files Browse the repository at this point in the history
  • Loading branch information
perazz committed Apr 10, 2024
2 parents 06678c7 + cabf328 commit e19d4b6
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 e19d4b6

Please sign in to comment.