Browse Source

/bin/bash to /usr/bin/env bash (#13422)

pull/13482/head 0.13.19
Kuba Tyszko 2 years ago
committed by GitHub
parent
commit
acf7de7a52
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 19 additions and 19 deletions
  1. +1
    -1
      util/chibios_conf_updater.sh
  2. +1
    -1
      util/generate_internal_docs.sh
  3. +1
    -1
      util/install/arch.sh
  4. +1
    -1
      util/install/debian.sh
  5. +1
    -1
      util/install/fedora.sh
  6. +1
    -1
      util/install/freebsd.sh
  7. +1
    -1
      util/install/gentoo.sh
  8. +1
    -1
      util/install/linux_shared.sh
  9. +1
    -1
      util/install/macos.sh
  10. +1
    -1
      util/install/msys2.sh
  11. +1
    -1
      util/install/slackware.sh
  12. +1
    -1
      util/install/solus.sh
  13. +1
    -1
      util/install/void.sh
  14. +1
    -1
      util/new_keyboard.sh
  15. +1
    -1
      util/qmk_install.sh
  16. +1
    -1
      util/rules_cleaner.sh
  17. +1
    -1
      util/travis_build.sh
  18. +1
    -1
      util/travis_compiled_push.sh
  19. +1
    -1
      util/travis_test.sh

+ 1
- 1
util/chibios_conf_updater.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -eEuo pipefail set -eEuo pipefail
umask 022 umask 022


+ 1
- 1
util/generate_internal_docs.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -x set -x


+ 1
- 1
util/install/arch.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
_qmk_install() { _qmk_install() {
echo "Installing dependencies" echo "Installing dependencies"


+ 1
- 1
util/install/debian.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
DEBIAN_FRONTEND=noninteractive DEBIAN_FRONTEND=noninteractive
DEBCONF_NONINTERACTIVE_SEEN=true DEBCONF_NONINTERACTIVE_SEEN=true


+ 1
- 1
util/install/fedora.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
_qmk_install() { _qmk_install() {
echo "Installing dependencies" echo "Installing dependencies"


+ 1
- 1
util/install/freebsd.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
_qmk_install_prepare() { _qmk_install_prepare() {
sudo pkg update $SKIP_PROMPT sudo pkg update $SKIP_PROMPT


+ 1
- 1
util/install/gentoo.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
_qmk_install_prepare() { _qmk_install_prepare() {
echo "This script will make a USE change in order to ensure that that QMK works on your system." echo "This script will make a USE change in order to ensure that that QMK works on your system."


+ 1
- 1
util/install/linux_shared.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# For those distros that do not package bootloadHID # For those distros that do not package bootloadHID
_qmk_install_bootloadhid() { _qmk_install_bootloadhid() {


+ 1
- 1
util/install/macos.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
_qmk_install_prepare() { _qmk_install_prepare() {
echo "Checking Homebrew installation" echo "Checking Homebrew installation"


+ 1
- 1
util/install/msys2.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
_qmk_install_prepare() { _qmk_install_prepare() {
pacman -Syu $MSYS2_CONFIRM pacman -Syu $MSYS2_CONFIRM


+ 1
- 1
util/install/slackware.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
_qmk_install_prepare() { _qmk_install_prepare() {
echo "Before you continue, please ensure that your user is added to sudoers and that sboinstall is configured." echo "Before you continue, please ensure that your user is added to sudoers and that sboinstall is configured."


+ 1
- 1
util/install/solus.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
_qmk_install_prepare() { _qmk_install_prepare() {
sudo eopkg -y update-repo sudo eopkg -y update-repo


+ 1
- 1
util/install/void.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
_qmk_install() { _qmk_install() {
echo "Installing dependencies" echo "Installing dependencies"


+ 1
- 1
util/new_keyboard.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# This script generates a new keyboard directory under keyboards/, # This script generates a new keyboard directory under keyboards/,
# and copies the template files from quantum/template/ into it. # and copies the template files from quantum/template/ into it.


+ 1
- 1
util/qmk_install.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
QMK_FIRMWARE_DIR=$(cd -P -- "$(dirname -- "$0")/.." && pwd -P) QMK_FIRMWARE_DIR=$(cd -P -- "$(dirname -- "$0")/.." && pwd -P)
QMK_FIRMWARE_UTIL_DIR=$QMK_FIRMWARE_DIR/util QMK_FIRMWARE_UTIL_DIR=$QMK_FIRMWARE_DIR/util


+ 1
- 1
util/rules_cleaner.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# This script finds all rules.mk files in keyboards/ subdirectories, # This script finds all rules.mk files in keyboards/ subdirectories,
# and deletes the build option filesize impacts from them. # and deletes the build option filesize impacts from them.


+ 1
- 1
util/travis_build.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
source util/travis_utils.sh source util/travis_utils.sh


+ 1
- 1
util/travis_compiled_push.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
source util/travis_utils.sh source util/travis_utils.sh
source util/travis_push.sh source util/travis_push.sh


+ 1
- 1
util/travis_test.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
source util/travis_utils.sh source util/travis_utils.sh


Loading…
Cancel
Save