X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=dotenv%2Finstall.sh;h=5a63beceb29dfe2bee5894e5ae1077d5988c944a;hb=982d43bc534c124537d5dd86cf63102e2e847f47;hp=73026414d997a50752a4dbb822a24784161d4772;hpb=912c9c8f06590f06a2a9df1c03d8ead43e96ec70;p=webi-installers%2F.git diff --git a/dotenv/install.sh b/dotenv/install.sh index 7302641..5a63bec 100644 --- a/dotenv/install.sh +++ b/dotenv/install.sh @@ -25,15 +25,15 @@ 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 + # 1.0.0 echo "$(dotenv --version 2>/dev/null | head -n 1 | cut -d' ' -f2 | sed 's:^v::')" }