Uses Powershells recursive copy

This commit is contained in:
Carl Beekhuizen 2021-08-30 11:05:42 +02:00
parent 02bf159250
commit f4d65dfce1
No known key found for this signature in database
GPG Key ID: 8F29E54F49E7AAB5

View File

@ -173,7 +173,7 @@ jobs:
$BUILD_FILE_NAME = "eth2deposit-cli-" + $CIRCLE_SHORT_SHA1 + "-windows-amd64" $BUILD_FILE_NAME = "eth2deposit-cli-" + $CIRCLE_SHORT_SHA1 + "-windows-amd64"
$TEST_FOLDER_NAME = "TMP_TEST_FOLDER" $TEST_FOLDER_NAME = "TMP_TEST_FOLDER"
mkdir ${TEST_FOLDER_NAME} mkdir ${TEST_FOLDER_NAME}
copy ${BUILD_FILE_NAME} ${TEST_FOLDER_NAME} Copy-item ${BUILD_FILE_NAME} -destination ${TEST_FOLDER_NAME} -recurse
copy test_binary_script.py ${TEST_FOLDER_NAME} copy test_binary_script.py ${TEST_FOLDER_NAME}
cd ${TEST_FOLDER_NAME} cd ${TEST_FOLDER_NAME}
python test_binary_script.py ${BUILD_FILE_NAME} python test_binary_script.py ${BUILD_FILE_NAME}