1
0

mac build: fix locale in binaries

This commit is contained in:
SomberNight
2019-07-03 17:37:02 +02:00
parent ec56a4612c
commit f1516d60ec
2 changed files with 22 additions and 3 deletions

View File

@@ -21,3 +21,7 @@ function DoCodeSignMaybe { # ARGS: infoName fileOrDirName codesignIdentity
info "Code signing ${infoName}..."
codesign -f -v $deep -s "$identity" "$file" || fail "Could not code sign ${infoName}"
}
function realpath() {
[[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"
}