* instead of . in find command

This commit is contained in:
Jordan Dominion
2023-06-23 14:38:04 -04:00
parent 5fffe501a2
commit 5d9115100f
+1 -1
View File
@@ -1,3 +1,3 @@
#!/usr/bin/sh -e
cd artifacts && for f in $(find .); do install "$f" "$1/opt/tgstation-server/$f"; done
cd artifacts && for f in $(find *); do install "$f" "$1/opt/tgstation-server/$f"; done