From f3874963960741d135960afdf8dd789ace8ee2d9 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Tue, 15 Jul 2025 14:42:33 -0400 Subject: [PATCH] Updated the update script. --- root/live-update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/live-update.sh b/root/live-update.sh index ea3e04c..5d33ba9 100644 --- a/root/live-update.sh +++ b/root/live-update.sh @@ -3,7 +3,7 @@ gitUrl="https://git.stormux.org/storm/gaming-image-files" gitPath="${gitUrl##*/}" pushd /tmp -sudo -u stormux git clone "${gitUrl}" +git clone "${gitUrl}" pushd "${gitPath}" # Copy all files as root (preserves permissions properly) find . -path './.git' -prune -o -type f -exec bash -c 'for i ; do cp -av --preserve=all --parents "${i}" /;done' _ {} \;