Skip to content

Commit

Permalink
v0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Sep 8, 2024
1 parent b63ad06 commit a3c6fa6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
11 changes: 0 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,17 +208,6 @@ If no `--git/tag` or `--git/sha` is provided, the latest tag from the Git repo w

---

## Dev

To install a development version of bbin, first install bbin stable, then install bbin with bbin.

```
$ bbin install . --as bbin-dev --main-opts '["-m" babashka.bbin.cli/-main]'
```

You can now run your development copy of bbin with `bbin-dev`.
Rebuilding is not required for `bbin-dev` installed this way, changes in Clojure source code is reflected instantly.

## Contributing

If you'd like to contribute to `bbin`, you're welcome to create [issues for ideas, feature requests, and bug reports](https://github.com/babashka/bbin/issues).
Expand Down
6 changes: 3 additions & 3 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The Scoop package will automatically update your `Path` with `%HOMEDRIVE%%HOMEPA

**1. Install `bbin` CLI:**
```shell
mkdir -p ~/.local/bin && curl -o- -L https://raw.githubusercontent.com/babashka/bbin/v0.2.3/bbin > ~/.local/bin/bbin && chmod +x ~/.local/bin/bbin
mkdir -p ~/.local/bin && curl -o- -L https://raw.githubusercontent.com/babashka/bbin/v0.2.4-SNAPSHOT/bbin > ~/.local/bin/bbin && chmod +x ~/.local/bin/bbin
```

**2. Add `~/.local/bin` to `PATH`:**
Expand All @@ -44,8 +44,8 @@ echo 'export PATH="$PATH:$HOME/.local/bin"' >> ~/.$(basename $SHELL)rc && exec $
**1. Open Windows Powershell and run the following commands to install the `bbin` CLI (including `.bat` wrapper):**
```powershell
New-Item -ItemType Directory -Force -Path $Env:HOMEDRIVE$Env:HOMEPATH\.local\bin
Invoke-WebRequest -Uri https://raw.githubusercontent.com/babashka/bbin/v0.2.3/bbin -OutFile $Env:HOMEDRIVE$Env:HOMEPATH\.local\bin\bbin
Invoke-WebRequest -Uri https://raw.githubusercontent.com/babashka/bbin/v0.2.3/bbin.bat -OutFile $Env:HOMEDRIVE$Env:HOMEPATH\.local\bin\bbin.bat
Invoke-WebRequest -Uri https://raw.githubusercontent.com/babashka/bbin/v0.2.4-SNAPSHOT/bbin -OutFile $Env:HOMEDRIVE$Env:HOMEPATH\.local\bin\bbin
Invoke-WebRequest -Uri https://raw.githubusercontent.com/babashka/bbin/v0.2.4-SNAPSHOT/bbin.bat -OutFile $Env:HOMEDRIVE$Env:HOMEPATH\.local\bin\bbin.bat
```

**2. Add `%HOMEDRIVE%%HOMEPATH%\.local\bin` to `Path` environment variable**
Expand Down
11 changes: 11 additions & 0 deletions templates/README.template.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,17 @@ If no `--git/tag` or `--git/sha` is provided, the latest tag from the Git repo w

---

## Dev

-To install a development version of bbin, first install bbin stable, then install bbin with bbin.

```
$ bbin install . --as bbin-dev --main-opts '["-m" babashka.bbin.cli/-main]'
```

You can now run your development copy of bbin with `bbin-dev`.
Rebuilding is not required for `bbin-dev` installed this way, changes in Clojure source code is reflected instantly.

## Contributing

If you'd like to contribute to `bbin`, you're welcome to create [issues for ideas, feature requests, and bug reports](https://github.com/babashka/bbin/issues).
Expand Down

0 comments on commit a3c6fa6

Please sign in to comment.