From f849b4996a0aebdfb4ade24749471b18302e791a Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Mon, 27 Oct 2025 10:47:01 +0100 Subject: [PATCH] Update ente-install.sh --- install/ente-install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/ente-install.sh b/install/ente-install.sh index 9d8d1fcdb..52cd3300c 100644 --- a/install/ente-install.sh +++ b/install/ente-install.sh @@ -83,9 +83,9 @@ $STD go build cmd/museum/main.go msg_ok "Built Museum" msg_info "Generating Secrets" -SECRET_ENC=$($STD go run tools/gen-random-keys/main.go | grep "encryption" | awk '{print $2}') -SECRET_HASH=$($STD go run tools/gen-random-keys/main.go | grep "hash" | awk '{print $2}') -SECRET_JWT=$($STD go run tools/gen-random-keys/main.go | grep "jwt" | awk '{print $2}') +SECRET_ENC=$(go run tools/gen-random-keys/main.go 2>/dev/null | grep "encryption" | awk '{print $2}') +SECRET_HASH=$(go run tools/gen-random-keys/main.go 2>/dev/null | grep "hash" | awk '{print $2}') +SECRET_JWT=$(go run tools/gen-random-keys/main.go 2>/dev/null | grep "jwt" | awk '{print $2}') msg_ok "Generated Secrets" msg_info "Creating museum.yaml"