Skip to content

Commit

Permalink
Add bash equivalents run*.bat scripts for linux devs (#31195)
Browse files Browse the repository at this point in the history
* Add bash equivalents run*.bat scripts for linux devs

* Apply suggestions from code review

Add shebangs

Co-authored-by: nikthechampiongr <[email protected]>

---------

Co-authored-by: nikthechampiongr <[email protected]>
  • Loading branch information
2 people authored and deltanedas committed Aug 21, 2024
1 parent ce8acb8 commit d079b89
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions runclient-Tools.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
dotnet run --project Content.Client --configuration Tools
read -p "Press enter to continue"
3 changes: 3 additions & 0 deletions runclient.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
dotnet run --project Content.Client
read -p "Press enter to continue"
3 changes: 3 additions & 0 deletions runserver-Tools.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
dotnet run --project Content.Server --configuration Tools
read -p "Press enter to continue"
3 changes: 3 additions & 0 deletions runserver.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
dotnet run --project Content.Server
read -p "Press enter to continue"

0 comments on commit d079b89

Please sign in to comment.