Accepting request 863749 from X11:terminals

OBS-URL: https://build.opensuse.org/request/show/863749
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/alacritty?expand=0&rev=17
This commit is contained in:
Dominique Leuenberger 2021-01-18 10:28:54 +00:00 committed by Git OBS Bridge
commit 0372fd79da
2 changed files with 7 additions and 9 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Sat Jan 16 20:44:50 UTC 2021 - Matthias Eliasson <elimat@opensuse.org>
- Make use of mktemp in revendor_source.sh script so we don't have a
predictable working directory (boo#1180782)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 11 11:01:09 UTC 2021 - Andreas Schwab <schwab@suse.de> Mon Jan 11 11:01:09 UTC 2021 - Andreas Schwab <schwab@suse.de>

View File

@ -4,15 +4,7 @@ set -euo pipefail
# packaging helper to workaround: # packaging helper to workaround:
# https://github.com/rust-lang/cargo/issues/7058 # https://github.com/rust-lang/cargo/issues/7058
wd="/tmp/revendor" wd="$(mktemp -d /tmp/revendor.XXXXXXXXXX)"
if [[ -d "$wd" ]]; then
echo -n "Removing previous ws ($wd)... "
rm -fr $wd
echo "done"
fi
mkdir -p $wd
# take what we need into the build # take what we need into the build
cp vendor*xz $wd cp vendor*xz $wd