From 854f4293607157f8d624ef8d0ada3637178cd4d2 Mon Sep 17 00:00:00 2001 From: Bernardo Magri Date: Sun, 5 Apr 2026 11:10:57 +0100 Subject: [PATCH] fix(bin): correct VM runner binary names and fix typos in test scripts --- bin/utils/nomarchy-test-installer | 6 +++--- bin/utils/nomarchy-test-vm | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bin/utils/nomarchy-test-installer b/bin/utils/nomarchy-test-installer index 29997b7..dbec788 100755 --- a/bin/utils/nomarchy-test-installer +++ b/bin/utils/nomarchy-test-installer @@ -1,13 +1,13 @@ #!/usr/bin/env bash -# Build and run the Nnomarchy Installer VM for testing. +# Build and run the Nomarchy Installer VM for testing. -echo "Building Nnomarchy Installer VM..." +echo "Building Nomarchy Installer VM..." nix build .#nixosConfigurations.installerVm.config.system.build.vm if [ $? -eq 0 ]; then echo "Success! Launching Installer VM..." - ./result/bin/run-nnomarchy-installer-vm + ./result/bin/run-nomarchy-installer-vm else echo "Error: VM build failed." exit 1 diff --git a/bin/utils/nomarchy-test-vm b/bin/utils/nomarchy-test-vm index c57c281..32acb69 100755 --- a/bin/utils/nomarchy-test-vm +++ b/bin/utils/nomarchy-test-vm @@ -1,14 +1,14 @@ #!/usr/bin/env bash -# Build and run the Nnomarchy VM (installed environment) for testing. +# Build and run the Nomarchy VM (installed environment) for testing. -echo "Building Nnomarchy VM (Installed Environment)..." -echo "Note: To test the INSTALLER, run 'nnomarchy-test-installer' instead." +echo "Building Nomarchy VM (Installed Environment)..." +echo "Note: To test the INSTALLER, run 'nomarchy-test-installer' instead." nix build .#nixosConfigurations.vm.config.system.build.vm if [ $? -eq 0 ]; then echo "Success! Launching VM..." - ./result/bin/run-nnomarchy-vm + ./result/bin/run-nomarchy-vm else echo "Error: VM build failed." exit 1