Skip to content

Commit 0c85f24

Browse files
committed
Ignore missing source files when rm-ing for fpm deployment
1 parent 2d007f1 commit 0c85f24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/fpm-deployment.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ find src/tests -name "*.dat" -exec cp {} "$destdir/" \;
4343
# Include additional files
4444
cp "${include[@]}" "$destdir/"
4545

46-
# Source file workarounds for fpm
47-
rm "${prune[@]}"
46+
# Source file workarounds for fpm; ignore missing files
47+
rm -f "${prune[@]}"
4848

4949
# List stdlib-fpm package contents
5050
ls -R "$destdir"

0 commit comments

Comments
 (0)