diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bbe4b16..9a08bb2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -325,16 +325,16 @@ jobs: # Tester Install Script - Test_Install_Script: - runs-on: ubuntu-latest - steps: - - name: Test Quick Install Script - run: | - apt update && apt upgrade -y && apt install -y curl, wget, unzip, jq openssl && apt clean - bash <(curl -s https://raw.githubusercontent.com/Keyfactor/kfutil/${GITHUB_REF_NAME}/install.sh) - which kfutil - kfutil version - rm $(which kfutil) +Test_Install_Script: + runs-on: ubuntu-latest + steps: + - name: Test Quick Install Script + run: | + sudo apt update && sudo apt upgrade -y && sudo apt install -y curl wget unzip jq openssl && sudo apt clean + bash <(curl -s https://raw.githubusercontent.com/Keyfactor/kfutil/${GITHUB_REF_NAME}/install.sh) + which kfutil + kfutil version + rm $(which kfutil) # Package Tests Test_Kfutil_pkg: diff --git a/cmd/storeTypes_test.go b/cmd/storeTypes_test.go index 222b9cc..25c7e80 100644 --- a/cmd/storeTypes_test.go +++ b/cmd/storeTypes_test.go @@ -217,7 +217,7 @@ func createAllStoreTypes(t *testing.T, storeTypes map[string]interface{}) { ghBranch = strings.Replace(ghBranch, "refs/heads/", "", 1) // url escape the branch name ghBranch = url.QueryEscape(ghBranch) - testArgs = append(testArgs, "--git-ref", fmt.Sprintf("'%s'", ghBranch)) + testArgs = append(testArgs, "--git-ref", fmt.Sprintf("%s", ghBranch)) t.Log("GITHUB_REF: ", ghBranch) } t.Log("testArgs: ", testArgs)