mirror of
https://github.com/helm/helm.git
synced 2026-02-13 15:55:03 -05:00
The test scripts hardcoded #!/bin/bash while they are not really requiring bash. Use the more portable #!/usr/bin/env sh instead, so that they use the default shell. Signed-off-by: Tom Wieczorek <twieczorek@mirantis.com>
9 lines
97 B
Bash
Executable file
9 lines
97 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
echo "Hello from a Helm plugin"
|
|
|
|
echo "PARAMS"
|
|
echo "$@"
|
|
|
|
$HELM_BIN ls --all
|
|
|