added gexpr to gnu g-prefixed binaries

This commit is contained in:
Jack
2020-01-10 05:25:52 +02:00
committed by GitHub
parent f684e82240
commit 6960e553d9
+4 -1
View File
@@ -2,7 +2,7 @@
# Semi-automatic installer of macOS on VirtualBox # Semi-automatic installer of macOS on VirtualBox
# (c) myspaghetti, licensed under GPL2.0 or higher # (c) myspaghetti, licensed under GPL2.0 or higher
# url: https://github.com/myspaghetti/macos-guest-virtualbox # url: https://github.com/myspaghetti/macos-guest-virtualbox
# version 0.77.7 # version 0.77.8
# Requirements: 40GB available storage on host # Requirements: 40GB available storage on host
# Dependencies: bash >= 4.0, unzip, wget, dmg2img, # Dependencies: bash >= 4.0, unzip, wget, dmg2img,
@@ -147,6 +147,9 @@ if [ -n "$(gcsplit --help 2>/dev/null)" ]; then
function base64() { function base64() {
gbase64 "$@" gbase64 "$@"
} }
function expr() {
gexpr "$@"
}
fi fi
} }