Fix trying to decompress the internet

This commit is contained in:
Salt 2020-11-29 21:41:13 -06:00
parent 0e0ea7e13d
commit e9f7dab5e6

View File

@ -95,7 +95,7 @@ build-gentoo() {
log "Getting tarball from: $stage3" log "Getting tarball from: $stage3"
curl -s "$stage3" -o "$stage3file" curl -s "$stage3" -o "$stage3file"
log "Decompressing tarball; this will prompt for root privileges" log "Decompressing tarball; this will prompt for root privileges"
sudo tar xf "$stage3" -C "$_optdest" sudo tar xf "$stage3file" -C "$_optdest"
# Now we do some pre-chroot configuration # Now we do some pre-chroot configuration
pushd "$_optdest" > /dev/null 2>&1 pushd "$_optdest" > /dev/null 2>&1