We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c880df commit b3adbdeCopy full SHA for b3adbde
makefiles/00-lib.mk
@@ -64,8 +64,9 @@ bash <(curl -fsSL $(K3S_LAB_RAW)/$(1)) $(2)
64
endef
65
66
# Run a script inside a Lima VM by curling from GitHub.
67
+# Uses a pipe instead of process substitution — Lima VMs lack /dev/fd support.
68
define lima-run-script
-bash <(curl -fsSL '$(K3S_LAB_RAW)/$(1)')
69
+bash -c 'curl -fsSL "$(K3S_LAB_RAW)/$(1)" | bash'
70
71
72
endif
0 commit comments