From 7692fb0182e70be5e0f316b82c96baab42cf73c0 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Wed, 24 May 2023 14:47:47 -0700 Subject: [PATCH] fixed extras launch --- install.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index d70cd18..9d8b1af 100755 --- a/install.sh +++ b/install.sh @@ -295,9 +295,11 @@ install-extras(){ # If the selected user is set to true if [[ "${result[idx]}" == "true" ]] ; then if [[ $dry_run != true ]] ; then - bash "$extra -i" + run "${escape_dir}/extras/$extra -i" else - bash "$extra -D" + dry_run=false + run "${escape_dir}/extras/$extra -D" + dry_run=true fi fi done