diff --git a/.releaserc.json b/.releaserc.json index 9ae3735..dba3040 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -11,7 +11,7 @@ ], [ "@semantic-release/git", { - "assets": ["dist/repotool", "repotool.plugin.zsh", "repotool.zsh"], + "assets": ["dist/repotool", "shell/zsh/repotool.plugin.zsh", "shell/zsh/repotool.zsh"], "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" } ] diff --git a/Makefile b/Makefile index 8b50ea7..a25f05f 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ install: dist/repotool shell/zsh/repotool.zsh shell/zsh/repotool.plugin.zsh mkdir -p ${REPOTOOL_PATH}/.bin/ mkdir -p ${REPOTOOL_PATH}/.shell/ install dist/repotool ${REPOTOOL_PATH}/.bin/ - install shell/zsh/repotool.zsh shell/zsh/repotool.plugin.zsh ${REPOTOOL_PATH}/.shell/ + install shell/repotool.zsh shell/repotool.plugin.zsh ${REPOTOOL_PATH}/.shell/ dist/repotool: $(SOURCES_SRC) $(LIBS_SRC) main.lua @mkdir -p dist diff --git a/shell/zsh/repotool.plugin.zsh b/shell/repotool.plugin.zsh similarity index 100% rename from shell/zsh/repotool.plugin.zsh rename to shell/repotool.plugin.zsh diff --git a/shell/zsh/repotool.zsh b/shell/repotool.zsh similarity index 100% rename from shell/zsh/repotool.zsh rename to shell/repotool.zsh