;doc: relnotes.github: windows: add -Force to extract command, overwriting old hledger executables; cleanups
This commit is contained in:
parent
9726aa3f5f
commit
9ac905459f
@ -393,7 +393,7 @@ hledger --version # should show the new version
|
|||||||
<details>
|
<details>
|
||||||
<summary>
|
<summary>
|
||||||
|
|
||||||
### Windows on 64-bit Intel (or ARM, using emulation)
|
### Windows on 64-bit Intel or ARM
|
||||||
|
|
||||||
</summary>
|
</summary>
|
||||||
|
|
||||||
@ -409,11 +409,15 @@ $ENV:PATH += ";"+$HOME+"\bin"
|
|||||||
2. Download and install the release binaries:
|
2. Download and install the release binaries:
|
||||||
```
|
```
|
||||||
cd $HOME\bin
|
cd $HOME\bin
|
||||||
curl https://github.com/simonmichael/hledger/releases/download/1.33/hledger-windows-x64.zip -OutFile hledger-windows-x64.zip # just rerun if interrupted
|
cp hledger.exe hledger.old.exe # keep a backup of the old executables, if you care
|
||||||
Expand-Archive hledger-windows-x64.zip -DestinationPath .
|
cp hledger-ui.exe hledger-ui.old.exe
|
||||||
rm hledger-windows-x64.zip
|
cp hledger-web.exe hledger-web.old.exe
|
||||||
|
curl https://github.com/simonmichael/hledger/releases/download/1.33/hledger-windows-x64.zip -OutFile hledger-windows-x64.zip
|
||||||
|
Expand-Archive hledger-windows-x64.zip -DestinationPath . -Force
|
||||||
cd $HOME
|
cd $HOME
|
||||||
hledger --version # should show the new version
|
hledger --version # should show the new version
|
||||||
|
hledger-ui --version
|
||||||
|
hledger-web --version
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Ensure a default journal file exists, and without a problematic encoding.
|
3. Ensure a default journal file exists, and without a problematic encoding.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user