Merge pull request #184 from dbingham/macos-install

Fix install on MacOS to not return error code 2 after a normal install
pull/194/head
Orsiris de Jong 4 years ago committed by GitHub
commit 7688317bd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -44,6 +44,7 @@ include #### GenericTrapQuit SUBSET ####
function SetLocalOSSettings {
USER=root
DO_INIT=true
# LOCAL_OS and LOCAL_OS_FULL are global variables set at GetLocalOS
@ -53,6 +54,7 @@ function SetLocalOSSettings {
;;
*"MacOSX"*)
GROUP=admin
DO_INIT=false
;;
*"msys"*|*"Cygwin"*)
USER=""
@ -410,7 +412,11 @@ umask 0022
GetLocalOS
SetLocalOSSettings
GetInit
# On Mac OS this always produces a warning which causes the installer to fail with exit code 2
# Since we know it won't work anyway, and that's fine, just skip this step
if $DO_INIT; then
GetInit
fi
STATS_LINK="http://instcount.netpower.fr?program=$PROGRAM&version=$PROGRAM_VERSION&os=$OS&action=$ACTION"

Loading…
Cancel
Save