We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 017ff48 commit c2b5f86Copy full SHA for c2b5f86
scripts/build.sh
@@ -5,8 +5,8 @@
5
#
6
# For Linux, also builds musl for truly static linking.
7
8
-bash_version="4.4"
9
-bash_patch_level=23
+bash_version="5.0"
+bash_patch_level=18
10
musl_version="1.2.1"
11
12
platform=$(uname -s)
@@ -35,7 +35,7 @@ pushd bash-${bash_version} || exit 1
35
for lvl in $(seq $bash_patch_level); do
36
curl -L "http://ftp.gnu.org/gnu/bash/bash-${bash_version}-patches/${bash_patch_prefix}-$(printf '%03d' "$lvl")" | patch -p0
37
done
38
-patch -p0 < "../../patch/hack-${bash_version}.diff"
+patch -p0 < "../../patch/hack-${bash_version}.diff" || exit 1
39
popd || exit 1
40
41
if [[ "$platform" = "Linux" ]]; then
0 commit comments