Skip to content

Commit

Permalink
Make (un)installation less interactive/verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
weiss committed Sep 22, 2023
1 parent e0c01b3 commit cbe6065
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/publish-release
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ cat >"$web_root_dir/install" <<-EOF
else wget --quiet "\$url"
fi
chmod +x "\$installer"
./\$installer
./\$installer --nox11
cd "\$OLDPWD"
EOF
cat >"$web_root_dir/uninstall" <<-EOF
Expand All @@ -125,7 +125,7 @@ cat >"$web_root_dir/uninstall" <<-EOF
if [ -e '/run/systemd/system' ] &&
systemctl list-unit-files \$rel_name.service >'/dev/null' 2>&1
then
systemctl --now disable \$rel_name
systemctl --quiet --now disable \$rel_name
rm -f /etc/systemd/system/\$rel_name.service
fi
rm -rf "/opt/\$rel_name"
Expand Down

0 comments on commit cbe6065

Please sign in to comment.