Closes: #42726 Release Notes: - Fix ./script/install-linux for installing a development version of Zed on Linux
23 lines
650 B
Bash
Executable File
23 lines
650 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
if [[ $# -gt 0 ]]; then
|
|
echo "
|
|
Usage: ${0##*/}
|
|
Builds and installs zed onto your system into ~/.local, making it available as ~/.local/bin/zed.
|
|
|
|
Before running this you should ensure you have all the build dependencies installed with `./script/linux`.
|
|
"
|
|
exit 1
|
|
fi
|
|
export ZED_CHANNEL=$(<crates/zed/RELEASE_CHANNEL)
|
|
export ZED_UPDATE_EXPLANATION="You need to fetch and rebuild zed in $(pwd)"
|
|
script/bundle-linux
|
|
|
|
arch="$(uname -m)"
|
|
commit=$(git rev-parse HEAD | cut -c 1-7)
|
|
archive="zed-linux-${arch}.tar.gz"
|
|
export ZED_BUNDLE_PATH="${CARGO_TARGET_DIR:-target}/release/${archive}"
|
|
script/install.sh
|