From 3232781a6dc80b16a4771c5837501059f6a03eed Mon Sep 17 00:00:00 2001 From: t3chn0m4g3 Date: Fri, 4 Jul 2025 17:29:19 +0200 Subject: [PATCH] fix var expansion --- update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.sh b/update.sh index 460f38bb..f8fa4304 100755 --- a/update.sh +++ b/update.sh @@ -191,7 +191,7 @@ function fuRESTORE () { # Backup file (.env) contains a record of the TPOT_VERSION that is used in docker-compose commmands. # We should upgrade the version in this file after restoring the backup. newVERSION=$(cat version) - sed -i 's/^TPOT_VERSION=.*/TPOT_VERSION=${newVERSION}/' $HOME/tpotce/.env + sed -i "s/^TPOT_VERSION=.*/TPOT_VERSION=${newVERSION}/" $HOME/tpotce/.env } ################