Escape Makefile escaping

This commit is contained in:
Jordan Dominion
2023-06-23 13:50:00 -04:00
parent 065968e31d
commit c43d95142f
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
install:
install -d "$(DESTDIR)/opt/tgstation-server"
cd artifacts && for f in $(find .); do install "$f" "$(DESTDIR)/opt/tgstation-server/$f"; done
build/package/deb/install_artifacts.sh "$(DESTDIR)"
install -d "$(DESTDIR)/etc/tgstation-server"
install build/package/deb/appsettings.Initial.yml "$(DESTDIR)/etc/tgstation-server/appsettings.Production.yml"
ln -s $(DESTDIR)/etc/tgstation-server/appsettings.Production.yml "$(DESTDIR)/opt/tgstation-server/appsettings.Production.yml"
+3
View File
@@ -0,0 +1,3 @@
#!/usr/bin/sh -e
cd artifacts && for f in $(find .); do install "$f" "$1/opt/tgstation-server/$f"; done