File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 4
4
5
5
set -eu
6
6
7
- SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
7
+ SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd) "
8
8
TEST_FRAMEWORK_ROOT=" $SCRIPT_DIR /../.."
9
9
TEST_DIR=" $TEST_FRAMEWORK_ROOT "
10
10
@@ -38,24 +38,22 @@ if [[ -z "${ACCOUNT_TOKENS+x}" ]]; then
38
38
echo " 'ACCOUNT_TOKENS' must be specified" 1>&2
39
39
exit 1
40
40
fi
41
- if ! readarray -t tokens < " ${ACCOUNT_TOKENS} " ; then
41
+ if ! readarray -t tokens < " ${ACCOUNT_TOKENS} " ; then
42
42
echo " Specify account numbers in 'ACCOUNT_TOKENS' file" 1>&2
43
43
exit 1
44
44
fi
45
45
46
46
# TODO: Can we get rid of this? Seemse excessive / leaves a trail
47
47
CI_LOGS_DIR=" $TEST_DIR /.ci-logs"
48
48
mkdir -p " $CI_LOGS_DIR "
49
- echo " $CURRENT_VERSION " > " $CI_LOGS_DIR /last-version.log"
50
-
49
+ echo " $CURRENT_VERSION " > " $CI_LOGS_DIR /last-version.log"
51
50
52
51
# TODO: This should def be it's own step in the GitHub actions workflow
53
52
54
53
echo " **********************************"
55
54
echo " * Downloading app packages"
56
55
echo " **********************************"
57
56
58
-
59
57
nice_time download_app_package " $LATEST_STABLE_RELEASE " " $TEST_OS "
60
58
nice_time download_app_package " $CURRENT_VERSION " " $TEST_OS "
61
59
nice_time download_e2e_executable " $CURRENT_VERSION " " $TEST_OS "
You can’t perform that action at this time.
0 commit comments