24 lines
427 B
Bash
Executable File
24 lines
427 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Open Rowing Monitor, https://github.com/laberning/openrowingmonitor
|
|
#
|
|
# Start script for Open Rowing Monitor
|
|
#
|
|
|
|
# treat unset variables as an error when substituting
|
|
set -u
|
|
# exit when a command fails
|
|
set -e
|
|
|
|
print() {
|
|
echo "$@"
|
|
}
|
|
|
|
CURRENT_DIR=$(pwd)
|
|
SCRIPT_DIR="$( cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd )"
|
|
INSTALL_DIR="$(dirname "$SCRIPT_DIR")"
|
|
|
|
cd $INSTALL_DIR
|
|
npm start
|
|
cd $CURRENT_DIR
|