X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=dotenv%2Finstall.sh;h=60bfb3d8e3bcaf70634102c8f2bf664361792ca0;hb=d68d0376b9cead7e1bf6446e71f00c8e3c965a45;hp=73026414d997a50752a4dbb822a24784161d4772;hpb=912c9c8f06590f06a2a9df1c03d8ead43e96ec70;p=webi-installers%2F.git diff --git a/dotenv/install.sh b/dotenv/install.sh index 7302641..60bfb3d 100644 --- a/dotenv/install.sh +++ b/dotenv/install.sh @@ -25,16 +25,16 @@ function __init_dotenv() { # mv ./dotenv* "$HOME/.local/opt/dotenv-v1.0.0/bin/dotenv" mv ./"$pkg_cmd_name"* "$pkg_src_cmd" - # chmod a+x "$HOME/.local/xbin/dotenv-v1.0.0/bin/dotenv" + # chmod a+x "$HOME/.local/opt/dotenv-v1.0.0/bin/dotenv" chmod a+x "$pkg_src_cmd" } pkg_get_current_version() { # 'dotenv version' has output in this format: - # v2.1.0 h1:pQSaIJGFluFvu8KDGDODV8u4/QRED/OPyIR+MWYYse8= + # dotenv v1.0.0 (17c7677) 2020-10-19T23:43:57Z # This trims it down to just the version number: - # 2.0.0 - echo "$(dotenv --version 2>/dev/null | head -n 1 | cut -d' ' -f2 | sed 's:^v::')" + # 1.0.0 + echo "$(dotenv --version 2> /dev/null | head -n 1 | cut -d' ' -f2 | sed 's:^v::')" } }