more openhamclock fixes

This commit is contained in:
David Young
2026-04-10 15:32:10 -06:00
parent d2950a6160
commit 7c94454f50
2 changed files with 3 additions and 1 deletions

View File

@@ -3,7 +3,8 @@
# Purpose : Install openhamclock
if [ ! -d "$HOME/.local/bin/openhamclock" ]; then
curl -fsSL https://raw.githubusercontent.com/accius/openhamclock/main/scripts/setup-linux.sh | INSTALL_DIR="$HOME/.local/bin/openhamclock" bash
curl -fsSL https://raw.githubusercontent.com/accius/openhamclock/main/scripts/setup-linux.sh | \
sed 's|INSTALL_DIR="$HOME/openhamclock"|INSTALL_DIR="$HOME/.local/bin/openhamclock"|' | bash
fi
echo "openhamclock is installed"...