diff options
author | Jesús <heckyel@hyperbola.info> | 2021-02-19 21:26:55 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-02-19 21:26:55 -0500 |
commit | 36a483afb80f2efd9fc002c55873f830e1a7491c (patch) | |
tree | 319b45ff183570ff553f467f93be6996657b34c3 /.build.yml | |
parent | ff15f9ef61766f39dfe23b6394774d5212a7dca2 (diff) | |
download | hyperterm-36a483afb80f2efd9fc002c55873f830e1a7491c.tar.lz hyperterm-36a483afb80f2efd9fc002c55873f830e1a7491c.tar.xz hyperterm-36a483afb80f2efd9fc002c55873f830e1a7491c.zip |
[.build.yml] fix directories
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -10,8 +10,9 @@ tasks: shellcheck hyperterm/hyperterm/hyperterm.sh shellcheck hyperterm/hyperterm/_custom.sh - build: | - shellcheck hyperterm/build.sh - bash -x hyperterm/build.sh + cd hyperterm + shellcheck build.sh + bash -x build.sh - core: | shellcheck hyperterm/hyperterm/core/autocomplete.sh shellcheck hyperterm/hyperterm/core/colors.sh @@ -46,7 +47,7 @@ tasks: bash -x hyperterm/uninstall.sh -s - shasums: | cd hyperterm - cp -rv /hyperterm/ "$HOME/.hyperterm/" + cp -rv ./hyperterm/ "$HOME/.hyperterm/" cp -v .bash* "$HOME" cp -v ./hyperterm/_custom.sh "$HOME" rm -rfv hyperterm/ |