]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Add bash equivalents run*.bat scripts for linux devs (#31195)
authorflashgnash <12749214+flashgnash@users.noreply.github.com>
Mon, 19 Aug 2024 22:36:08 +0000 (23:36 +0100)
committerGitHub <noreply@github.com>
Mon, 19 Aug 2024 22:36:08 +0000 (00:36 +0200)
* Add bash equivalents run*.bat scripts for linux devs

* Apply suggestions from code review

Add shebangs

Co-authored-by: nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com>
---------

Co-authored-by: nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com>
runclient-Tools.sh [new file with mode: 0755]
runclient.sh [new file with mode: 0755]
runserver-Tools.sh [new file with mode: 0755]
runserver.sh [new file with mode: 0755]

diff --git a/runclient-Tools.sh b/runclient-Tools.sh
new file mode 100755 (executable)
index 0000000..cc0c958
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh
+dotnet run --project Content.Client --configuration Tools
+read -p "Press enter to continue"
diff --git a/runclient.sh b/runclient.sh
new file mode 100755 (executable)
index 0000000..9417cc9
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh
+dotnet run --project Content.Client
+read -p "Press enter to continue"
diff --git a/runserver-Tools.sh b/runserver-Tools.sh
new file mode 100755 (executable)
index 0000000..6280dc4
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh
+dotnet run --project Content.Server --configuration Tools
+read -p "Press enter to continue"
diff --git a/runserver.sh b/runserver.sh
new file mode 100755 (executable)
index 0000000..33258e3
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh
+dotnet run --project Content.Server
+read -p "Press enter to continue"