Fix log file path for dsymutil in bundle-mac
This commit is contained in:
parent
bc16c2f85d
commit
b22718e643
1 changed files with 3 additions and 3 deletions
|
@ -189,9 +189,9 @@ function prepare_binaries() {
|
||||||
local app_path=$2
|
local app_path=$2
|
||||||
|
|
||||||
echo "Unpacking dSYMs for $architecture"
|
echo "Unpacking dSYMs for $architecture"
|
||||||
if ! dsymutil --flat target/${architecture}/${target_dir}/Zed 2> ${target_dir}/dsymutil.log; then
|
if ! dsymutil --flat target/${architecture}/${target_dir}/Zed 2> target/dsymutil.log; then
|
||||||
echo "dsymmutil failed"
|
echo "dsymutil failed"
|
||||||
cat ${target_dir}/dsymutil.log
|
cat target/dsymutil.log
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
version="$(cargo metadata --no-deps --manifest-path crates/zed/Cargo.toml --offline --format-version=1 | jq -r '.packages | map(select(.name == "zed"))[0].version')"
|
version="$(cargo metadata --no-deps --manifest-path crates/zed/Cargo.toml --offline --format-version=1 | jq -r '.packages | map(select(.name == "zed"))[0].version')"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue