mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 12:03:59 +00:00
7 lines
279 B
Bash
7 lines
279 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
cd /Users/chrisfu/dev/knoe
|
|
echo "[$(date)] Starting install run 2..." >> logs/install_run2.log
|
|
bash install.sh --silent -c conf/service/knoe.cfg >> logs/install_run2.log 2>&1
|
|
echo "[$(date)] Install run 2 complete." >> logs/install_run2.log
|