Skip to content

Commit 8d7c730

Browse files
committed
Switch scripts to use bash instead of sh
It's proving brittle to test because these sh scripts keep working on my mac and failing in CI. I'm hoping bash is going to be more consistent.
1 parent 03c363d commit 8d7c730

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

script/install-gtest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
set -x
44
set -e

script/parse-validate-version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
if [ ! -f package.json ]; then
44
echo "Please run $0 from project root!"

script/test-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
set -e
44
set -x

script/upload-package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
set -e
44
set -x

script/util.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
md() {
44
if [ ! -d "$1" ]; then

0 commit comments

Comments
 (0)