You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
osascript -e "display dialog \"I couldn't find a NetLogo app in:\n\n${path}\n\nMake sure NetLogo Launcher is in the same folder as the NetLogo app.\" buttons {\"Quit\"}"
exit 1
fi
if [ "$#" -ge 1 ]; then
for var in "$@"
do
open -n "$app" --args "$var"
done
else
open -n "$app"
fi
osascript -e "tell application \"${app%.*}\" to activate"