Skip to content

Commit 61c15b1

Browse files
committed
Fix shebangs from /bin/bash to /bin/sh
These simple scripts do not use any bash features, so do not require needless extra dependency
1 parent aa26d10 commit 61c15b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

script/bootstrap

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

33
bundle install

script/cibuild

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

44
bundle exec rspec

0 commit comments

Comments
 (0)