Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ popd() { command popd >/dev/null; }
# Only pull files that don't already exist
mycurl() {
(($# == 2)) || return
[[ -f ${1##*/} ]] || { echo "File: ${1##*/} | Url: ${1}" && curl -sLO "$1"; }
[[ -f ${1##*/} ]] || { echo "File: ${1##*/} | Url: ${1}" && curl -sSfLO "$1"; }
[[ -f ${1##*/}.${2} || ${NO_SIGS:-} ]] || {
echo "File: ${1##*/}.${2} | Url: ${1}.${2}" && curl -sLO "${1}.${2}"
echo "File: ${1##*/}.${2} | Url: ${1}.${2}" && curl -sSfLO "${1}.${2}"
gpg --trust-model always --verify "${1##*/}.${2}" "${1##*/}" 2>/dev/null
}
}
Expand Down
11 changes: 11 additions & 0 deletions version-53.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

bash_version="5.3"
bash_patch_level=3
musl_version="1.2.5"
CFLAGS="-Wno-error=implicit-function-declaration"

export bash_version
export bash_patch_level
export musl_version
export CFLAGS
2 changes: 1 addition & 1 deletion version.sh
Loading