From 457d23fb1adf313734a9980a53c63f162f0bb445 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Sun, 29 Aug 2021 15:26:16 +0200 Subject: [PATCH] Adds execute permission to test runner --- fetch_tester.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/fetch_tester.sh b/fetch_tester.sh index e4d0a5d..d55f622 100755 --- a/fetch_tester.sh +++ b/fetch_tester.sh @@ -4,7 +4,9 @@ TESTERVERSION=0.0.1 # Get the release information from the api for the specified version curl -X GET "https://git.p-epsilon.com/api/v1/repos/Deukhoofd/PokemonScriptTester/releases/tags/$TESTERVERSION" -H "accept: application/json" | -# Parse as json, select the url we need to download the file - jq '.assets[] | select(.name=="PokemonScriptTester") .browser_download_url ' | -# Download the file at the given url - xargs curl > PokemonScriptTester \ No newline at end of file + # Parse as json, select the url we need to download the file + jq '.assets[] | select(.name=="PokemonScriptTester") .browser_download_url ' | + # Download the file at the given url + xargs curl > PokemonScriptTester + +chmod +x PokemonScriptTester \ No newline at end of file