simonmichael/hledger

Install instruction under Linux with release 1.34

Closed this issue · 1 comments

https://github.com/simonmichael/hledger/releases/tag/1.34

Linux release notes show still on how to install the old ones.

hledger/doc/ghrelnotes

Lines 39 to 43 in 245b082

cd /usr/local/bin
curl -LOC- https://github.com/simonmichael/hledger/releases/download/$REL/hledger-linux-x64.zip # just rerun if interrupted
unzip hledger-linux-x64.zip && tar xvf hledger-linux-x64.tar && rm -f hledger-linux-x64.{zip,tar} # github workaround, preserves permissions
cd
hledger --version # should show the new version

I think the new ones should be:

cd /usr/local/bin
curl -LOC- https://github.com/simonmichael/hledger/releases/download/1.34/hledger-linux-x64.tar.gz    # just rerun if interrupted
tar xvf hledger-linux-x64.tar.gz && rm -f hledger-linux-x64.tar.gz  # unpack and remove .tar.gz file
cd
hledger --version    # should show the new version

Thanks a lot for the update, its nice to have it straight forward. :)