mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
build.sh: Improve script portability
It should work fine with BusyBox basename and grep now.
This commit is contained in:
parent
c495ade723
commit
f097d64293
1 changed files with 3 additions and 3 deletions
6
build.sh
6
build.sh
|
@ -189,7 +189,7 @@ ensure_go() {
|
|||
if ! command -v go >/dev/null; then
|
||||
downloadgo=1
|
||||
else
|
||||
SYSGOVERSION=$(go version | cut -f3 -d ' ' | grep -Po "([0-9]+\.){2}[0-9]+")
|
||||
SYSGOVERSION=$(go version | cut -f3 -d ' ' | grep -Eo "([0-9]+\.){2}[0-9]+")
|
||||
SYSGOMAJOR=$(cut -f1 -d. <<<"$SYSGOVERSION")
|
||||
SYSGOMINOR=$(cut -f2 -d. <<<"$SYSGOVERSION")
|
||||
SYSGOPATCH=$(cut -f3 -d. <<<"$SYSGOVERSION")
|
||||
|
@ -319,11 +319,11 @@ build_man_pages() {
|
|||
|
||||
for f in "$MADDY_SRC"/docs/man/*.1.scd; do
|
||||
scdoc < "$f" | gzip > /tmp/maddy-tmp.gz
|
||||
install -Dm 0644 /tmp/maddy-tmp.gz "$PKGDIR/$PREFIX/share/man/man1/$(basename -s .scd "$f").gz"
|
||||
install -Dm 0644 /tmp/maddy-tmp.gz "$PKGDIR/$PREFIX/share/man/man1/$(basename "$f" .scd).gz"
|
||||
done
|
||||
for f in "$MADDY_SRC"/docs/man/*.5.scd; do
|
||||
scdoc < "$f" | gzip > /tmp/maddy-tmp.gz
|
||||
install -Dm 0644 /tmp/maddy-tmp.gz "$PKGDIR/$PREFIX/share/man/man5/$(basename -s .scd "$f").gz"
|
||||
install -Dm 0644 /tmp/maddy-tmp.gz "$PKGDIR/$PREFIX/share/man/man5/$(basename "$f" .scd).gz"
|
||||
done
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue