mirror of https://github.com/helm/helm
Merge pull request #1619 from technosophos/fix/convert-plugin-format-on-tests
fix(hel): fix plugin format on testspull/1303/merge
commit
2460bd8ce4
@ -1,4 +1,4 @@
|
||||
name: args
|
||||
usage: "echo args"
|
||||
description: "This echos args"
|
||||
command: "$HELM_HOME/plugins/args.sh"
|
||||
command: "$HELM_PLUGIN_DIR/args.sh"
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
echo $HELM_PLUGIN_SHORTNAME
|
||||
echo $HELM_PLUGIN_NAME
|
||||
echo $HELM_PLUGIN_DIR
|
||||
echo $HELM_PLUGIN
|
||||
echo $HELM_HOME
|
||||
echo $HELM_PATH_REPOSITORY
|
@ -1,4 +1,4 @@
|
||||
name: fullenv
|
||||
usage: "show env vars"
|
||||
description: "show all env vars"
|
||||
command: "$HELM_HOME/plugins/fullenv.sh"
|
||||
command: "$HELM_PLUGIN_DIR/fullenv.sh"
|
Loading…
Reference in new issue