From: flashgnash <12749214+flashgnash@users.noreply.github.com> Date: Mon, 19 Aug 2024 22:36:08 +0000 (+0100) Subject: Add bash equivalents run*.bat scripts for linux devs (#31195) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=400f5898ecfe6992129acacffb23e1100f7a7892;p=space-station-14.git Add bash equivalents run*.bat scripts for linux devs (#31195) * 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> --- diff --git a/runclient-Tools.sh b/runclient-Tools.sh new file mode 100755 index 0000000000..cc0c958b86 --- /dev/null +++ b/runclient-Tools.sh @@ -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 index 0000000000..9417cc9218 --- /dev/null +++ b/runclient.sh @@ -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 index 0000000000..6280dc4279 --- /dev/null +++ b/runserver-Tools.sh @@ -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 index 0000000000..33258e3190 --- /dev/null +++ b/runserver.sh @@ -0,0 +1,3 @@ +#!/bin/sh +dotnet run --project Content.Server +read -p "Press enter to continue"