diff options
author | Ali Mohammad Pur <ali.mpfard@gmail.com> | 2023-02-12 17:50:28 +0330 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2023-02-13 23:00:15 +0330 |
commit | eb20fbe145d2100df790e4ef0e2ed4402b97bfea (patch) | |
tree | f94d5acd3a21c2cfbcdfc4371867a9f962623fab /Base | |
parent | beaae6b420cbe85a2d382f8f75447fb49514c20f (diff) | |
download | serenity-eb20fbe145d2100df790e4ef0e2ed4402b97bfea.zip |
Everywhere: Use /bin/Shell as the shebang for Shell scripts
Diffstat (limited to 'Base')
-rw-r--r-- | Base/home/anon/.shellrc | 2 | ||||
-rwxr-xr-x | Base/home/anon/Tests/run-tests-and-shutdown.sh | 2 | ||||
-rw-r--r-- | Base/res/devel/templates/cpp-basic.postcreate | 2 | ||||
-rw-r--r-- | Base/res/devel/templates/cpp-gui.postcreate | 2 | ||||
-rw-r--r-- | Base/res/devel/templates/cpp-library.postcreate | 2 | ||||
-rw-r--r-- | Base/res/devel/templates/serenity-application.postcreate | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/Base/home/anon/.shellrc b/Base/home/anon/.shellrc index 9c33c7f968..f5763f21f7 100644 --- a/Base/home/anon/.shellrc +++ b/Base/home/anon/.shellrc @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/Shell # IFS controls what $(...) (inline evaluate) would split its captured # string with. the default is \x0a (i.e. newline). diff --git a/Base/home/anon/Tests/run-tests-and-shutdown.sh b/Base/home/anon/Tests/run-tests-and-shutdown.sh index 50b1fb86ef..4edea6bfeb 100755 --- a/Base/home/anon/Tests/run-tests-and-shutdown.sh +++ b/Base/home/anon/Tests/run-tests-and-shutdown.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/Shell echo echo "==== Running Tests on SerenityOS ====" diff --git a/Base/res/devel/templates/cpp-basic.postcreate b/Base/res/devel/templates/cpp-basic.postcreate index 42f33c31cc..011ebfd714 100644 --- a/Base/res/devel/templates/cpp-basic.postcreate +++ b/Base/res/devel/templates/cpp-basic.postcreate @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/Shell echo > $2/Makefile <<-EOF PROGRAM = $1 diff --git a/Base/res/devel/templates/cpp-gui.postcreate b/Base/res/devel/templates/cpp-gui.postcreate index b4cdad84f9..0205882e27 100644 --- a/Base/res/devel/templates/cpp-gui.postcreate +++ b/Base/res/devel/templates/cpp-gui.postcreate @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/Shell echo > $2/Makefile <<-EOF PROGRAM = $1 diff --git a/Base/res/devel/templates/cpp-library.postcreate b/Base/res/devel/templates/cpp-library.postcreate index ba62fec9b3..af1aee3a2d 100644 --- a/Base/res/devel/templates/cpp-library.postcreate +++ b/Base/res/devel/templates/cpp-library.postcreate @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/Shell # $1: Project name, filesystem safe # $2: Project full path diff --git a/Base/res/devel/templates/serenity-application.postcreate b/Base/res/devel/templates/serenity-application.postcreate index 6ab49b224e..8daf1dc6e7 100644 --- a/Base/res/devel/templates/serenity-application.postcreate +++ b/Base/res/devel/templates/serenity-application.postcreate @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/Shell echo > $2/CMakeLists.txt <<-EOF # NOTE! Make sure to edit this file and remove the comments before submitting a |