Skip to content

Commit

Permalink
Merge pull request #552 from androidnisse/master
Browse files Browse the repository at this point in the history
Fix bash for sending gists
  • Loading branch information
ermo authored Jun 22, 2024
2 parents cd7616b + 7c5c463 commit 5eb52a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/packaging/troubleshooting-packaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ cat package.yml | gh gist create --public
Send the output of `solbuild` to a public Gist:

```bash
go-task &| gh gist create --public
go-task |& gh gist create --public
```

_Note: the usual `solbuild` output will not be shown when this command is running, and it will take at least a few seconds_

Send the output of `solbuild` to a new `output.txt` file:

```bash
go-task &| tee output.txt
go-task |& tee output.txt
```

## Common Issues
Expand Down

0 comments on commit 5eb52a4

Please sign in to comment.