mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
22 lines
347 B
Plaintext
22 lines
347 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
channel="$1"
|
||
|
|
||
|
query=""
|
||
|
case $channel in
|
||
|
stable)
|
||
|
;;
|
||
|
preview)
|
||
|
query="&preview=1"
|
||
|
;;
|
||
|
nightly)
|
||
|
query="&nightly=1"
|
||
|
;;
|
||
|
*)
|
||
|
echo "this must be run on either of stable|preview|nightly release branches" >&2
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
curl -s https://zed.dev/api/releases/latest?asset=Zed.dmg$query | jq -r .version
|