fixed extras launch

This commit is contained in:
pyr0ball 2023-05-24 14:47:47 -07:00
parent 36aa5016a9
commit 7692fb0182

View file

@ -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