-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuninstall.sh
34 lines (25 loc) · 857 Bytes
/
uninstall.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
# Uninstallation Script for LiveCode
# Constants
BINARY_NAME="livecode"
INSTALL_DIR="${HOME}/.local/bin"
# Functions
remove_binary() {
echo "Removing LiveCode from ${INSTALL_DIR}..."
rm -f "${INSTALL_DIR}/${BINARY_NAME}"
}
remove_from_path() {
if [[ "$PATH" =~ (^|:)${INSTALL_DIR}(:|$|) ]]; then
echo "Removing ${INSTALL_DIR} from PATH..."
sed -i '' "/export PATH=\"${PATH}:${INSTALL_DIR}\"/d" "${HOME}/.zshrc"
fi
}
# Main Script
if [[ ! -w "${HOME}/.bashrc" && ! -w "${HOME}/.zshrc" ]]; then
echo "Error: Cannot write to either .bashrc or .zshrc. Please adjust permissions or run as sudo."
exit 1
fi
remove_binary
remove_from_path
echo "Uninstallation complete! LiveCode has been removed from your PATH."
echo "Please restart your terminal session or source your shell profile to apply changes."