mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
make_tarball: fix the vendor tarball generation path
Tilde expansion doesn't work inside quotes.
This commit is contained in:
parent
a3e6353c05
commit
5a03a17b9a
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ $TAR_APPEND version
|
||||||
|
|
||||||
if [ -n "$VENDOR_TARBALLS" ]; then
|
if [ -n "$VENDOR_TARBALLS" ]; then
|
||||||
$BUILD_TOOL corrosion-vendor.tar.gz
|
$BUILD_TOOL corrosion-vendor.tar.gz
|
||||||
mv corrosion-vendor.tar.gz "${FISH_ARTEFACT_PATH:-~/fish_built}"/"${prefix}"_corrosion-vendor.tar.gz
|
mv corrosion-vendor.tar.gz ${FISH_ARTEFACT_PATH:-~/fish_built}/"${prefix}"_corrosion-vendor.tar.gz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd -
|
cd -
|
||||||
|
|
Loading…
Reference in a new issue