FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Verified Commit 10a6ad67 authored by Silas S. Brown's avatar Silas S. Brown
Browse files

GNU/Linux uninstall: missed detail

parent f9d58b39
No related branches found
No related tags found
No related merge requests found
install.sh 100644 → 100755
......@@ -21,7 +21,7 @@
set -e
PREFIX=/usr/local # or /usr
if which python; then PYTHON=python; else PYTHON=python3; fi
if which python >/dev/null 2>/dev/null; then PYTHON=python; else PYTHON=python3; fi
mkdir -p "$PREFIX/share/gradint"
mv gradint.py "$PREFIX/share/gradint/"
......@@ -62,4 +62,4 @@ Categories=Education;Languages
EOF
echo; echo "Installation complete."
echo "To uninstall: sudo rm -rf \"$PREFIX/bin/gradint\" \"$PREFIX/share/gradint\""
echo "To uninstall: sudo rm -rf \"$PREFIX/bin/gradint\" \"$PREFIX/share/gradint\" \"$PREFIX/share/applications/gradint.desktop\" "
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment