X-Git-Url: https://git.josue.xyz/?p=webi-installers%2F.git;a=blobdiff_plain;f=_example%2Finstall.sh;fp=_example%2Finstall.sh;h=bd4a692582c719833cbf2a221f8b56fed059b593;hp=cebf7a415cca647e8a4d8a964e6acf37c6d6c7d4;hb=b80057d427867b81bc6e393abe0bf30ad5bc2705;hpb=d68d0376b9cead7e1bf6446e71f00c8e3c965a45 diff --git a/_example/install.sh b/_example/install.sh index cebf7a4..bd4a692 100644 --- a/_example/install.sh +++ b/_example/install.sh @@ -1,5 +1,8 @@ #!/bin/bash +# shellcheck disable=SC2034 +# "'pkg_cmd_name' appears unused. Verify it or export it." + function __init_foobar() { set -e set -u @@ -21,10 +24,10 @@ function __init_foobar() { # pkg_install must be defined by every package pkg_install() { # ~/.local/opt/foobar-v0.99.9/bin - mkdir -p "$(dirname $pkg_src_cmd)" + mkdir -p "$(dirname "${pkg_src_cmd}")" # mv ./foobar-*/foo ~/.local/opt/foobar-v0.99.9/bin/foo - mv ./foobar-*/foo "$pkg_src_cmd" + mv ./foobar-*/foo "${pkg_src_cmd}" } # pkg_get_current_version is recommended, but not required