From 5cb529ac6e96a46eedba599a10f30ea51a69031d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Og=C3=B3rek?= Date: Wed, 30 Aug 2017 14:06:52 +0200 Subject: [PATCH] Remove node archive after extracting --- test/instrumentation/run.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/test/instrumentation/run.sh b/test/instrumentation/run.sh index 2449095..81582bc 100755 --- a/test/instrumentation/run.sh +++ b/test/instrumentation/run.sh @@ -7,5 +7,6 @@ if [ ! -d $nodeRoot ]; then url="https://codeload.github.com/nodejs/node/tar.gz/$version" curl $url -o "$version.tar.gz" tar -xf "$version.tar.gz" + rm "$version.tar.gz" fi exec node http.test.js `pwd`/$nodeRoot