From 75a74a4f016847d89e1ade17045a8b1de642a10c Mon Sep 17 00:00:00 2001 From: Andrew Zambazos Date: Wed, 26 Aug 2026 22:55:24 +1200 Subject: [PATCH] Update run-nebula-vm.sh --- scripts/run-nebula-vm.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/run-nebula-vm.sh b/scripts/run-nebula-vm.sh index c9cdef5..2192ef3 100644 --- a/scripts/run-nebula-vm.sh +++ b/scripts/run-nebula-vm.sh @@ -35,11 +35,6 @@ resolve_shell() { return 0 fi - if command -v nebula-shell >/dev/null 2>&1; then - command -v nebula-shell - return 0 - fi - for candidate in \ "${repo_root}/shells/desktop/shell/build/nebula-shell" \ "${repo_root}/build/nebula-shell" \ @@ -52,6 +47,11 @@ resolve_shell() { fi done + if command -v nebula-shell >/dev/null 2>&1; then + command -v nebula-shell + return 0 + fi + return 1 }