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 efe5f13 commit fc7bda9Copy full SHA for fc7bda9
1 file changed
assets/sourceos/bin/turtle-cloudfog
@@ -9,17 +9,17 @@ cmd="${1:-surfaces}"
9
case "$cmd" in
10
surfaces)
11
shift || true
12
- exec "$agentctl" --stdio cloudfog-surfaces "$@"
+ exec python3 "$agentctl" --stdio cloudfog-surfaces "$@"
13
;;
14
inspect)
15
16
- exec "$agentctl" --stdio cloudfog-inspect "$@"
+ exec python3 "$agentctl" --stdio cloudfog-inspect "$@"
17
18
request-execution)
19
20
surface="${1:-cloudfog/local-devshell}"
21
22
- exec "$agentctl" --stdio request-surface-execution "$surface" "$@"
+ exec python3 "$agentctl" --stdio request-surface-execution "$surface" "$@"
23
24
*)
25
echo "usage: turtle-cloudfog [surfaces|inspect <surface>|request-execution <surface> -- <command>]" >&2
0 commit comments