Skip to content

Commit 4e38767

Browse files
committed
Use plain sh for y.sh, test.sh and clean_all.sh
FreeBSD by default doesn't install bash.
1 parent 1aa0cf9 commit 4e38767

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.cirrus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ task:
33
freebsd_instance:
44
image: freebsd-13-2-release-amd64
55
setup_rust_script:
6-
- pkg install -y git bash binutils
6+
- pkg install -y git binutils
77
- curl https://sh.rustup.rs -sSf --output rustup.sh
88
- sh rustup.sh --default-toolchain none -y --profile=minimal
99
target_cache:

clean_all.sh

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

44
rm -rf target/ build_system/target download/ build/ dist/

test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#!/usr/bin/env bash
1+
#!/bin/sh
22
exec ./y.sh test "$@"

y.sh

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

33
set -e
44
echo "[BUILD] build system" 1>&2

0 commit comments

Comments
 (0)