We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d043451 + a7e8b9c commit f9feff1Copy full SHA for f9feff1
support/init
@@ -212,7 +212,9 @@ FILTERED_ARGS=$(printf '%s\n' "$(IFS=' '; echo "${RUNTIME_ARGS[*]}")" | sed 's/
212
#CHECK FOR CORRECT SERVICE;
213
if [ "$should_install" == "y" ] || [ "$PREF_UPDATE_SERVICE" == true ] ; then
214
#REMOVE ALL INSTANCES
215
- rm "$service_path" 2>&1 >/dev/null
+ if [ -f "$service_path" ]; then
216
+ rm "$service_path" 2>&1 >/dev/null
217
+ fi
218
219
#CHECK FOR SYSTEMCTL FILE
220
base_directory=$(dirname "$(readlink -f "$0")")
0 commit comments