File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7+ ## [ Unreleased]
8+
9+ ### Added
10+ - improve simple test to report all day success.
11+
712## 1.10.1 - 2020-07-16
813
914### Fixed
Original file line number Diff line number Diff line change @@ -89,9 +89,19 @@ while [ $FILE_EXTRACTED -eq 0 ]; do
8989 sleep 10
9090done
9191echo " File extraction complete."
92-
92+
93+ source ./my_env.sh
94+ nsuccess=$(( $SUCCESS + 1 ))
95+ if [ $nsuccess = 12 ]; then
96+ nsuccess=0
97+ fi
98+ echo $nsuccess
99+ export SUCCESS=$nsuccess
100+ env > ./my_env.sh
101+ post_message " Upload+extract test script all day success!"
93102
94103# ------------------------ Delete dataset ------------------------
95104curl -X DELETE $CLOWDER_URL /api/datasets/$DATASET_ID ? key=$CLOWDER_KEY
96105
106+
97107echo " Test complete."
You can’t perform that action at this time.
0 commit comments