Commit 9d5c7070 authored by Jorge Moratinos's avatar Jorge Moratinos
Browse files

Fix check on uninstall scripts

parent a37d3210
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ while getopts ":yh" opt; do
  esac
done

if [[ "$FORCE" == "0"]]
if [ "$FORCE" == "0" ]; then
    # Function to display a warning message
    warning_message() {
        echo "WARNING: This uninstallation process is irreversible."
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ while getopts ":yh" opt; do
  esac
done

if [[ "$FORCE" == "0"]]
if [ "$FORCE" == "0" ]; then
    # Function to display a warning message
    warning_message() {
        echo "WARNING: This uninstallation process is irreversible."
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ while getopts ":yh" opt; do
  esac
done

if [[ "$FORCE" == "0"]]
if [ "$FORCE" == "0" ]; then
    # Function to display a warning message
    warning_message() {
        echo "WARNING: This uninstallation process is irreversible."