https://github.com/nushell/nightly
The nightly release packages of Nushell, Only keep the latest a few releases
https://github.com/nushell/nightly
Last synced: 1 day ago
JSON representation
The nightly release packages of Nushell, Only keep the latest a few releases
- Host: GitHub
- URL: https://github.com/nushell/nightly
- Owner: nushell
- Created: 2023-06-13T03:36:00.000Z (over 2 years ago)
- Default Branch: nightly
- Last Pushed: 2026-02-08T04:14:17.000Z (5 days ago)
- Last Synced: 2026-02-08T11:27:07.417Z (4 days ago)
- Language: Nushell
- Size: 53.3 MB
- Stars: 13
- Watchers: 5
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nightly Release for Nushell
This is the nightly release repo for [Nushell](https://github.com/nushell/nushell), they are not production ready and just for test purpose.
**ONLY THE LATEST 10 NIGHTLY BUILDS WILL BE KEPT.**
[](https://github.com/nushell/nightly/actions/workflows/nightly-build.yml)
## Pull the latest nightly build in the REPL
One can use the `toolkit.nu` module provided in this repo to download one of the latest nightly builds.
- download the module
```nushell
git clone https://github.com/nushell/nightly.git; cd nightly
# or download the file alone
http get https://raw.githubusercontent.com/nushell/nightly/nightly/toolkit.nu | save --force toolkit.nu
```
- activate the module
```nushell
overlay use --reload --prefix toolkit.nu as tk
```
- get some help
```nushell
tk get-latest-nightly-build --help
```
- an example for Linux
```nushell
> tk get-latest-nightly-build x86_64-linux-gnu
latest nightly build (version: 0.85.1, hash: c925537) saved as `nu-0.85.1-x86_64-linux-gnu-full.tar.gz`
hint: run `tar xvf nu-0.85.1-x86_64-linux-gnu-full.tar.gz --directory .` to unpack the tarball
```