Skip to content

Commit 3bad347

Browse files
authored
BUGFIX: fix make clean and install script bin path (#15)
* BUGFIX: fix make clean * use correct bin path
1 parent b9246ca commit 3bad347

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ dist-windows:
5050

5151
.PHONY: clean
5252
clean:
53-
rm -rf ./bin ./dist plugin.yaml
53+
rm -rf ./bin ./dist

scripts/install-binary.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ installFile() {
9999
HELM_TMP="/tmp/$PROJECT_NAME"
100100
mkdir -p "$HELM_TMP"
101101
tar xf "$PLUGIN_TMP_FILE" -C "$HELM_TMP"
102-
HELM_TMP_BIN="${HELM_TMP}/${PROJECT_NAME}"
102+
HELM_TMP_BIN="${HELM_TMP}/bin/${PROJECT_NAME}"
103103
echo "Preparing to install into ${HELM_PLUGIN_PATH}"
104104
# Use * to also copy the file withe the exe suffix on Windows
105105
cp "$HELM_TMP_BIN"* "$HELM_PLUGIN_PATH"

0 commit comments

Comments
 (0)