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 d1a4871 commit ecf6889Copy full SHA for ecf6889
install-binary.sh
@@ -124,6 +124,9 @@ downloadFile() {
124
installFile() {
125
tar xzf "$PLUGIN_TMP_FILE" -C "$HELM_TMP"
126
HELM_TMP_BIN="$HELM_TMP/diff/bin/diff"
127
+ if [ "${OS}" = "windows" ]; then
128
+ HELM_TMP_BIN="$HELM_TMP_BIN.exe"
129
+ fi
130
echo "Preparing to install into ${HELM_PLUGIN_DIR}"
131
mkdir -p "$HELM_PLUGIN_DIR/bin"
132
cp "$HELM_TMP_BIN" "$HELM_PLUGIN_DIR/bin"
0 commit comments