mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-07-13 17:13:00 +01:00
Escape Makefile escaping
This commit is contained in:
@@ -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"
|
||||
|
||||
Executable
+3
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/sh -e
|
||||
|
||||
cd artifacts && for f in $(find .); do install "$f" "$1/opt/tgstation-server/$f"; done
|
||||
Reference in New Issue
Block a user