fetchurl: remove unpaired call to `stopNest'

Fixes #27406.

Commit 5d4efb2c81 added an assertion to `stopNest'
which requires it be correctly paired with `startNest'. `fetchurl' calls
`stopNest', but never calls `startNest'; the former calls are removed.
This commit is contained in:
Thomas Tuegel 2017-07-20 09:34:56 -05:00
parent baad413416
commit c25199f697
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

@ -39,7 +39,6 @@ tryDownload() {
curlexit=$?;
fi
done
stopNest
}
@ -51,7 +50,6 @@ finish() {
fi
runHook postFetch
stopNest
exit 0
}