0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

Revert "SERVER-43961 Allow absolute path in BUILD_DIR with ICECC"

This reverts commit 517f375f36.
This commit is contained in:
Andrew Morrow 2019-10-29 15:13:52 +00:00 committed by evergreen
parent 8296aaccf8
commit cb59e55f28

View File

@ -418,8 +418,9 @@ if [ -n "$out_file" ]; then
fi
echo "creating $md5.tar.gz"
mydir=`pwd`
pushd $tempdir > /dev/null
tar -czh --numeric-owner -f "$md5".tar.gz $target_files || {
tar -czh --numeric-owner -f "$mydir/$md5".tar.gz $target_files || {
echo "Couldn't create archive"
exit 3
}