Files
HamPackServer/install-openhamclock.sh
2026-04-11 06:54:03 -06:00

11 lines
284 B
Bash
Executable File

#!/bin/bash
#
# Purpose : Install openhamclock
if [ ! -d "$HOME/openhamclock" ]; then
curl -fsSL https://raw.githubusercontent.com/accius/openhamclock/main/scripts/setup-linux.sh | bash -s -- --service
fi
cd "$HOME/openhamclock" && npm install
echo "openhamclock is installed"...