Update run-nebula-vm.sh

This commit is contained in:
2026-08-26 22:55:24 +12:00
parent 7741fbcb5c
commit 75a74a4f01
+5 -5
View File
@@ -35,11 +35,6 @@ resolve_shell() {
return 0 return 0
fi fi
if command -v nebula-shell >/dev/null 2>&1; then
command -v nebula-shell
return 0
fi
for candidate in \ for candidate in \
"${repo_root}/shells/desktop/shell/build/nebula-shell" \ "${repo_root}/shells/desktop/shell/build/nebula-shell" \
"${repo_root}/build/nebula-shell" \ "${repo_root}/build/nebula-shell" \
@@ -52,6 +47,11 @@ resolve_shell() {
fi fi
done done
if command -v nebula-shell >/dev/null 2>&1; then
command -v nebula-shell
return 0
fi
return 1 return 1
} }