Skip to content

Commit 2992730

Browse files
committed
scripts: move from /bin/bash to /bin/sh
1 parent 6aded49 commit 2992730

13 files changed

+13
-13
lines changed

build-systems/build-all.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
#
33
# Runs all build scripts in tmux panes
44
#

build-systems/build-qt6.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
#
33
# Runs qt6 build script
44
#

build-systems/github/macos/create-dmg-qt6.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22

33
#
44
# creating the QOwnNotes.dmg with Applications link for GitHub Actions

build-systems/github/macos/create-dmg.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22

33
#
44
# creating the QOwnNotes.dmg with Applications link for GitHub Actions

gitlab-ci/create-dmg.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22

33
#
44
# creating the QOwnNotes.dmg with Applications link

scripts/clang-format-project.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
#
33
# A tool to run clang-format on the entire project
44
#

scripts/download_translations.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
#
33
# Use this script in $ProjectFileDir$ to download the translations from Crowdin
44
#

scripts/increment-build-number.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
number=`cat build_number`
33
let number++
44
echo "$number" | tee build_number #<-- output and save the number back to file

scripts/update-copyright-year.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
#
33
# Use this script to update all copyright years in the source and license files
44
#

scripts/update-translations.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
#
33
# Use this script in $ProjectFileDir$ to update all translation files
44
#

src/libraries/fakevim/utils/generate_fakevim_test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
VIM=vim
33
FAKEVIM=${FAKEVIM:-example/example}
44
diff=meld

travis/create-dmg.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22

33
#
44
# creating the QOwnNotes.dmg with Applications link

travis/linux/coveralls.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22

33
#
44
# does the coveralls submit under linux

0 commit comments

Comments
 (0)