Skip to content

Commit

Permalink
add release installation
Browse files Browse the repository at this point in the history
  • Loading branch information
hidetatz committed Jul 30, 2023
1 parent d9bc786 commit 41b415f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,12 @@ sbtest: clean $(BIN)
.PHONY: clean
clean:
rm -f $(BIN)

.PHONY: rel
rel: clean $(BIN)
mv ./shiba ./_shiba
mkdir -p shiba/bin
mv ./_shiba shiba/bin/shiba
cp -r ./std shiba/
tar -czf shiba0.0.0.linux_amd64.tar.gz shiba
rm -rf shiba
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ if errno != 0 {
print(result)
```

For more code example, see [tests/](./tests/)
For more code example, see [tests/](./tests/).

Installation:
1. Download release from GitHub
2. `tar zxf ~/Downloads/shiba0.0.0.linux_amd64.tar.gz -C ~/`
3. `~/shiba/bin/shiba main.sb`

Author: [@hidetatz](https://github.com/hidetatz)

Expand Down

0 comments on commit 41b415f

Please sign in to comment.