From 7ebfb4bb3e6fc657aaebcb26c5852ac0e8fc25e2 Mon Sep 17 00:00:00 2001 From: Tomohiro Degawa Date: Sun, 7 May 2023 21:20:56 +0900 Subject: [PATCH] added commands to copy *.dat and *.npy --- ci/fpm-deployment.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/fpm-deployment.sh b/ci/fpm-deployment.sh index bdd3c2b6e..c88c3a227 100644 --- a/ci/fpm-deployment.sh +++ b/ci/fpm-deployment.sh @@ -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/"