Skip to content

CellScript 0.25.0

Latest

Choose a tag to compare

@github-actions github-actions released this 02 Sep 05:56
· 0 commits to main since this release
v0.25.0
3b481eb

Installation

One-line install (Global)

curl -fsSL https://raw.githubusercontent.com/CellScript-Labs/CellScript/main/scripts/install.sh | sh

One-line install (China mainland)

If raw.githubusercontent.com is unreachable, use a GitHub proxy:

curl -fsSL https://ghgo.xyz/https://raw.githubusercontent.com/CellScript-Labs/CellScript/main/scripts/install.sh | sh

Or force a specific mirror for binary downloads:

CELLSCRIPT_MIRROR=ghgo curl -fsSL https://ghgo.xyz/https://raw.githubusercontent.com/CellScript-Labs/CellScript/main/scripts/install.sh | sh

Available mirrors: ghgo (ghgo.xyz), ghproxy (gh-proxy.com), ghfast (ghfast.top)

Install specific version

CELLSCRIPT_VERSION=0.25.0 curl -fsSL https://raw.githubusercontent.com/CellScript-Labs/CellScript/main/scripts/install.sh | sh

Alternative: cargo install

cargo install cellscript

Manual download

Platform Archive
macOS (Apple Silicon) cellscript-0.25.0-aarch64-apple-darwin.tar.gz
macOS (Intel) cellscript-0.25.0-x86_64-apple-darwin.tar.gz
Linux (x86_64) cellscript-0.25.0-x86_64-unknown-linux-musl.tar.gz
Linux (ARM64) cellscript-0.25.0-aarch64-unknown-linux-musl.tar.gz

Unpack and add to PATH:

tar xzf cellscript-*.tar.gz
mkdir -p ~/.cellscript/bin && mv cellc ~/.cellscript/bin/
export PATH="$HOME/.cellscript/bin:$PATH"

Verify: cellc --version


Environment variables

Variable Default Description
CELLSCRIPT_HOME ~/.cellscript Installation directory
CELLSCRIPT_VERSION latest Install a specific version
CELLSCRIPT_MIRROR auto Mirror: auto, direct, ghgo, ghproxy, ghfast
CELLSCRIPT_DRY_RUN 0 Set to 1 to preview without installing

What's Changed

  • Clean deprecated code and repository residue by @a19q3 in #5

New Contributors

  • @a19q3 made their first contribution in #5

Full Changelog: v0.24.0...v0.25.0