mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2025-03-05 20:49:04 -08:00
fix: correct parameter in instructions
Installation instructions mention -o, however -o writes the log file: -o logfile --output-file=logfile Log all messages to logfile. The messages are normally reported to standard error. To write the document to an output file, in this case, you could use -O: -O file --output-document=file
This commit is contained in:
parent
055877ba6b
commit
6e66501a0a
|
@ -43,7 +43,7 @@ Invoke-Webrequest https://github.com/JanDeDobbeleer/oh-my-posh3/releases/latest/
|
|||
|
||||
|
||||
```bash
|
||||
wget https://github.com/JanDeDobbeleer/oh-my-posh3/releases/latest/download/posh-darwin-amd64 -o /usr/local/bin/oh-my-posh
|
||||
wget https://github.com/JanDeDobbeleer/oh-my-posh3/releases/latest/download/posh-darwin-amd64 -O /usr/local/bin/oh-my-posh
|
||||
chmod +x /usr/local/bin/oh-my-posh
|
||||
```
|
||||
|
||||
|
@ -52,7 +52,7 @@ chmod +x /usr/local/bin/oh-my-posh
|
|||
|
||||
|
||||
```bash
|
||||
wget https://github.com/JanDeDobbeleer/oh-my-posh3/releases/latest/download/posh-linux-amd64 -o /usr/local/bin/oh-my-posh
|
||||
wget https://github.com/JanDeDobbeleer/oh-my-posh3/releases/latest/download/posh-linux-amd64 -O /usr/local/bin/oh-my-posh
|
||||
chmod +x /usr/local/bin/oh-my-posh
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue