From 400f5898ecfe6992129acacffb23e1100f7a7892 Mon Sep 17 00:00:00 2001 From: flashgnash <12749214+flashgnash@users.noreply.github.com> Date: Mon, 19 Aug 2024 23:36:08 +0100 Subject: [PATCH] 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> --- runclient-Tools.sh | 3 +++ runclient.sh | 3 +++ runserver-Tools.sh | 3 +++ runserver.sh | 3 +++ 4 files changed, 12 insertions(+) create mode 100755 runclient-Tools.sh create mode 100755 runclient.sh create mode 100755 runserver-Tools.sh create mode 100755 runserver.sh diff --git a/runclient-Tools.sh b/runclient-Tools.sh new file mode 100755 index 00000000000..cc0c958b862 --- /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 00000000000..9417cc9218a --- /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 00000000000..6280dc4279b --- /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 00000000000..33258e3190a --- /dev/null +++ b/runserver.sh @@ -0,0 +1,3 @@ +#!/bin/sh +dotnet run --project Content.Server +read -p "Press enter to continue"