mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
17 lines
515 B
Bash
Executable File
17 lines
515 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
mkdir -p vendor/bin
|
|
if [[ ! -f vendor/bin/jq ]]; then
|
|
curl -L https://github.com/stedolan/jq/releases/download/jq-1.6/jq-osx-amd64 > vendor/bin/jq
|
|
chmod +x vendor/bin/jq
|
|
fi
|
|
|
|
package_version="v$(cargo metadata --format-version=1 | vendor/bin/jq --raw-output '.packages[] | select(.name == "zed") | .version')"
|
|
git_tag=$(git tag --points-at HEAD)
|
|
|
|
if [[ $package_version != $git_tag ]]; then
|
|
echo "Version $package_version of zed package does not match git tag $git_tag"
|
|
exit 1
|
|
fi |