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 a3c6fa6 commit 78a2be8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions README.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
2 changes: 1 addition & 1 deletion deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
selmer/selmer {:mvn/version "1.12.55"}
version-clj/version-clj {:mvn/version "2.0.2"}}
:aliases {:neil {:project {:name babashka/bbin
:version "0.2.4-SNAPSHOT"}}}}
:version "0.2.4"}}}}
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.4-SNAPSHOT/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/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.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
Invoke-WebRequest -Uri https://raw.githubusercontent.com/babashka/bbin/v0.2.4/bbin -OutFile $Env:HOMEDRIVE$Env:HOMEPATH\.local\bin\bbin
Invoke-WebRequest -Uri https://raw.githubusercontent.com/babashka/bbin/v0.2.4/bbin.bat -OutFile $Env:HOMEDRIVE$Env:HOMEPATH\.local\bin\bbin.bat
```

**2. Add `%HOMEDRIVE%%HOMEPATH%\.local\bin` to `Path` environment variable**
Expand Down

0 comments on commit 78a2be8

Please sign in to comment.