Explorar el Código

Merge pull request #19 from cyril-ui-developer/copy-artifects-target

CONSOLE-3303: Move plugin template to the openshift GitHub org - Fix cannot access '/logs/artifacts/integration-tests/screenshots' issue
Sam Padgett hace 3 años
padre
commit
28c8f1fb20
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      test-prow-e2e.sh

+ 1 - 2
test-prow-e2e.sh

@@ -4,12 +4,11 @@ set -exuo pipefail
 
 ARTIFACT_DIR=${ARTIFACT_DIR:=/tmp/artifacts}
 SCREENSHOTS_DIR=integration-tests/screenshots
-INSTALLER_DIR=${INSTALLER_DIR:=${ARTIFACT_DIR}/installer}
 
 function copyArtifacts {
   if [ -d "$ARTIFACT_DIR" ] && [ -d "$SCREENSHOTS_DIR" ]; then
     echo "Copying artifacts from $(pwd)..."
-    cp -r "$SCREENSHOTS_DIR" "${ARTIFACT_DIR}/integration-tests/screenshots"
+    cp -r "$SCREENSHOTS_DIR" "${ARTIFACT_DIR}"
   fi
 }