generated from asdf-vm/asdf-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Environment Variables available to script | ||
|
||
# ASDF_INSTALL_TYPE: version or ref | ||
# ASDF_INSTALL_VERSION: | ||
# Full version number if ASDF_INSTALL_TYPE=version. | ||
# Git ref (tag/commit/branch) if ASDF_INSTALL_TYPE=ref. | ||
# ASDF_INSTALL_PATH: The path to where the tool has been, or should be installed. | ||
|
||
# Commands that invoke this script | ||
|
||
# asdf which <command>: Display the path to an executable | ||
# asdf exec <command> [args...]: Executes the command shim for current version | ||
# asdf env <command> [util]: Runs util (default: env) inside the environment used for command shim execution. | ||
|
||
setup_plugin_usage() { | ||
echo "here we need to enable the use of this pecific version of helm plugin" | ||
helm plugin uninstall helm-secrets | ||
helm plugin install "${ASDF_INSTALL_PATH}" | ||
} | ||
|
||
setup_plugin_usage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.0.0 |