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
error "Error verifying $appPath: Returned $appVerifyStatus"
474
480
return
475
481
fi
476
482
@@ -802,7 +808,6 @@ notice "Checking for configuration at ${YELLOW}$configfile ${RESET}"
802
808
803
809
if [[ !-f$configfile ]] || [[ ${#writeconfig}-eq 1 ]]
804
810
then
805
-
notice "No config file at $configfile. Running discovery."
806
811
807
812
# Write Config mode
808
813
# --write
@@ -823,7 +828,7 @@ then
823
828
if [[ -w"$(dirname $configfile)" ]]
824
829
#directory is writable
825
830
then
826
-
infoOut "No config file at $configfile. Creating one now."
831
+
infoOut "No existing config file at $configfile. Creating one now."
827
832
# creates a blank plist
828
833
# touch "$configfile"
829
834
plutil -create xml1 "$configfile"
@@ -834,7 +839,7 @@ then
834
839
fi
835
840
else
836
841
# directory doesn't exist
837
-
infoOut "No config file at $configfile. Creating one now."
842
+
infoOut "No existing config file at $configfile. Creating one now."
838
843
makepath "$configfile"
839
844
# creates a blank plist
840
845
plutil -create xml1 "$configfile"|| fatal "Unable to create $configfile. Re-run patchomator with sudo to create the config file there, or use a writable path with\n\t ${YELLOW}--config \"path to config file\"${RESET}"
@@ -844,7 +849,7 @@ then
844
849
845
850
if [[ -w$configfile ]]
846
851
then
847
-
echo"\t${BOLD}Refreshing $configfile${RESET}"
852
+
infoOut "Refreshing $configfile"
848
853
else
849
854
fatal "$configfile is not writable. Re-run patchomator with sudo, or use a writable path with\n\t ${YELLOW}--config \"path to config file\"${RESET}"
0 commit comments