mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Everywhere: Use /bin/Shell as the shebang for Shell scripts
This commit is contained in:
parent
beaae6b420
commit
eb20fbe145
Notes:
sideshowbarker
2024-07-17 00:25:44 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/eb20fbe145 Pull-request: https://github.com/SerenityOS/serenity/pull/17437 Reviewed-by: https://github.com/kleinesfilmroellchen Reviewed-by: https://github.com/linusg
20 changed files with 20 additions and 20 deletions
|
@ -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).
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
echo
|
||||
echo "==== Running Tests on SerenityOS ===="
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
echo > $2/Makefile <<-EOF
|
||||
PROGRAM = $1
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
echo > $2/Makefile <<-EOF
|
||||
PROGRAM = $1
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
# $1: Project name, filesystem safe
|
||||
# $2: Project full path
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
source $(dirname "$0")/test-commons.inc
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
source $(dirname "$0")/test-commons.inc
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
source $(dirname "$0")/test-commons.inc
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
source $(dirname "$0")/test-commons.inc
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
source $(dirname "$0")/test-commons.inc
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
source $(dirname "$0")/test-commons.inc
|
||||
# go to a writable directory
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/shell
|
||||
|
||||
source $(dirname "$0")/test-commons.inc
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
source $(dirname "$0")/test-commons.inc
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
source $(dirname "$0")/test-commons.inc
|
||||
# go to a writable directory
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
source $(dirname "$0")/test-commons.inc
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
source $(dirname "$0")/test-commons.inc
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
source $(dirname "$0")/test-commons.inc
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
source $(dirname "$0")/test-commons.inc
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/Shell
|
||||
|
||||
echo "Not running Shell-valid as it has a high failure rate on target #7336"
|
||||
echo PASS
|
||||
|
|
Loading…
Reference in a new issue