Skip to content

Commit

Permalink
Merge pull request #713 from degawa/deploy-dat-npy-in-example
Browse files Browse the repository at this point in the history
fixed a problem with `dat` and `npy` files in example dir not being deployed
  • Loading branch information
jvdp1 authored May 7, 2023
2 parents 061512e + 7ebfb4b commit 6ea8484
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ci/fpm-deployment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ find src -maxdepth 1 -iname "*.f90" -exec cp {} "$destdir/src/" \;
find test -name "test_*.f90" -exec cp {} "$destdir/test/" \;
find test -name "*.dat" -exec cp {} "$destdir/" \;
find example -name "example_*.f90" -exec cp {} "$destdir/example/" \;
find example -name "*.dat" -exec cp {} "$destdir/" \;
find example -name "*.npy" -exec cp {} "$destdir/" \;

# Include additional files
cp "${include[@]}" "$destdir/"
Expand Down

0 comments on commit 6ea8484

Please sign in to comment.