This repository has been archived on 2026-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
jcal/install.sh

13 lines
273 B
Bash

#!/bin/sh
if [[ $* = "-u" ]] then
echo "Uninstalling jcal"
echo "removing: /usr/bin/jcal.jar"
echo "removing: /usr/bin/jcal"
sudo rm /usr/bin/jcal.jar /usr/bin/jcal
else
./build.sh
sudo cp ./release/*.jar /usr/bin/
sudo cp ./jcal /usr/bin/
fi