We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c69e5c commit 9b82361Copy full SHA for 9b82361
script/install-linux
@@ -15,12 +15,8 @@ export ZED_CHANNEL=$(<crates/zed/RELEASE_CHANNEL)
15
export ZED_UPDATE_EXPLANATION="You need to fetch and rebuild zed in $(pwd)"
16
script/bundle-linux
17
18
-target="linux-$(uname -m)"
+arch="$(uname -m)"
19
commit=$(git rev-parse HEAD | cut -c 1-7)
20
-if [[ "$ZED_CHANNEL" == "dev" ]]; then
21
- archive="zed-${commit}-${target}.tar.gz"
22
-else
23
- archive="zed-${target}.tar.gz"
24
-fi
+archive="zed-linux-${arch}.tar.gz"
25
export ZED_BUNDLE_PATH="${CARGO_TARGET_DIR:-target}/release/${archive}"
26
script/install.sh
0 commit comments