We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3f10171 + aaf6600 commit 9b59b32Copy full SHA for 9b59b32
tasks/agent_install.json
@@ -7,7 +7,8 @@
7
},
8
"install_flags": {
9
"type": "Array[String]",
10
- "description": "Positional arguments to pass to the shell installer"
+ "description": "Positional arguments to pass to the shell installer",
11
+ "default": []
12
}
13
14
"input_method": "environment",
tasks/agent_install.sh
@@ -2,6 +2,6 @@
2
3
set -e
4
5
-flags=$(echo $PT_install_flags | sed -e 's/^\["//' -e 's/\"]$//' -e 's/", *"/ /g')
+flags=$(echo $PT_install_flags | sed -e 's/^\["*//' -e 's/"*\]$//' -e 's/", *"/ /g')
6
curl -k "https://${PT_server}:8140/packages/current/install.bash" | bash -s -- $flags
0 commit comments