#!/bin/bash -> #!/usr/bin/env bash (#1216)

This commit is contained in:
Rangi
2023-11-04 18:37:34 -04:00
committed by GitHub
parent 46e67ee078
commit 99727cbe99
7 changed files with 7 additions and 7 deletions

View File

@@ -1,4 +1,5 @@
#!/bin/bash #!/usr/bin/env bash
install -d /usr/local/bin/ /usr/local/share/man/man1/ /usr/local/share/man/man5/ /usr/local/share/man/man7/ install -d /usr/local/bin/ /usr/local/share/man/man1/ /usr/local/share/man/man5/ /usr/local/share/man/man7/
install -s -m 755 rgbasm rgblink rgbfix rgbgfx /usr/local/bin/ install -s -m 755 rgbasm rgblink rgbfix rgbgfx /usr/local/bin/
install -m 644 rgbasm.1 rgblink.1 rgbfix.1 rgbgfx.1 /usr/local/share/man/man1/ install -m 644 rgbasm.1 rgblink.1 rgbfix.1 rgbgfx.1 /usr/local/share/man/man1/

View File

@@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
set -e set -e
case "${1%-*}" in case "${1%-*}" in

View File

@@ -1,5 +1,4 @@
#!/bin/sh #!/bin/sh
set -e set -e
pngver=1.6.37 pngver=1.6.37

View File

@@ -284,7 +284,7 @@ mingw64:
BISON=bison PKG_CONFIG="PKG_CONFIG_SYSROOT_DIR=/usr/x86_64-w64-mingw32 pkg-config" BISON=bison PKG_CONFIG="PKG_CONFIG_SYSROOT_DIR=/usr/x86_64-w64-mingw32 pkg-config"
wine-shim: wine-shim:
$Qecho '#!/bin/bash' > rgbshim.sh $Qecho '#!/usr/bin/env bash' > rgbshim.sh
$Qecho 'WINEDEBUG=-all wine $$0.exe "$${@:1}"' >> rgbshim.sh $Qecho 'WINEDEBUG=-all wine $$0.exe "$${@:1}"' >> rgbshim.sh
$Qchmod +x rgbshim.sh $Qchmod +x rgbshim.sh
$Qln -s rgbshim.sh rgbasm $Qln -s rgbshim.sh rgbasm

View File

@@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
# #

View File

@@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
# #

View File

@@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
export LC_ALL=C export LC_ALL=C