We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b44885 commit 1118f75Copy full SHA for 1118f75
scripts/env_wrapper.sh
@@ -1,6 +1,14 @@
1
#!/bin/bash
2
set -euo pipefail
3
4
+# Check for dangling old-style tee-builder VM
5
+if command -v limactl &>/dev/null && limactl list 2>/dev/null | grep -q '^tee-builder '; then
6
+ echo "WARNING: FOUND 'tee-builder' VM FROM BEFORE COMMIT 2b44885."
7
+ echo "THIS VM IS NO LONGER USED. TO CLEAN IT UP, RUN:"
8
+ echo " limactl stop tee-builder && limactl delete tee-builder"
9
+ echo ""
10
+fi
11
+
12
# Generate a unique VM name based on the absolute path of this repo
13
# This prevents conflicts when the same repo is cloned to multiple locations
14
REPO_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
0 commit comments