Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-27T23:28:23.440Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

install-linux

23 lines · 650 B · text
1#!/usr/bin/env bash
2
3set -euxo pipefail
4
5if [[ $# -gt 0 ]]; then
6  echo "
7  Usage: ${0##*/}
8  Builds and installs zed onto your system into ~/.local, making it available as ~/.local/bin/zed.
9
10  Before running this you should ensure you have all the build dependencies installed with `./script/linux`.
11  "
12  exit 1
13fi
14export ZED_CHANNEL=$(<crates/zed/RELEASE_CHANNEL)
15export ZED_UPDATE_EXPLANATION="You need to fetch and rebuild zed in $(pwd)"
16script/bundle-linux
17
18arch="$(uname -m)"
19commit=$(git rev-parse HEAD | cut -c 1-7)
20archive="zed-linux-${arch}.tar.gz"
21export ZED_BUNDLE_PATH="${CARGO_TARGET_DIR:-target}/release/${archive}"
22script/install.sh
23
Served at tenant.openagents/omega Member data and write actions are omitted.