From a94a589c7795a8004c7935b2685bbcba5c929019 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 5 Dec 2024 09:41:33 +0100 Subject: [PATCH] Create missing script --- scripts/Common/OS/setup.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Common/OS/setup.fish b/scripts/Common/OS/setup.fish index 68371225..eb4dc65a 100755 --- a/scripts/Common/OS/setup.fish +++ b/scripts/Common/OS/setup.fish @@ -11,8 +11,6 @@ function runSetup source "$dir/../../lib/restoration.fish" source "$dir/../../lib/settings.fish" set -l mountDir (getOSConfig partition.rootDir) - set -l script (mktemp) - chmod +x "$script" if not type -q runChroot function runChroot -S @@ -80,7 +78,9 @@ function runSetup end function actionPreRun + set -l script (mktemp) echo "Partitioning drives..." + chmod +x "$script" and getOSConfig partition.script >"$script" and "$script" and rm "$script"