From 8798428b6296e890043cac9b30383889011cce61 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Wed, 26 Apr 2023 12:12:22 +0200 Subject: [PATCH] install.sh: fix config path --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 690b58c..7f8daf0 100755 --- a/install.sh +++ b/install.sh @@ -12,8 +12,8 @@ echo "Installing application in: $INSTALL_DIR" mkdir -p "$INSTALL_DIR"/{bin,logs} install -m 750 -t "${INSTALL_DIR}/bin" build/thalos-server -if [ ! -f "${INSTALL_DIR}/config.json" ]; then - install -T -m 600 config.example.json "${INSTALL_DIR}/config.json" +if [ ! -f "${INSTALL_DIR}/config.yml" ]; then + install -T -m 600 config.example.yml "${INSTALL_DIR}/config.yml" fi install -m 750 -t "${INSTALL_DIR}" scripts/start.sh scripts/stop.sh