File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
7
7
## [ Unreleased] [ ]
8
8
9
+ ## [ 0.3.1] [ ] - 2017-07-17
10
+ ### Fixed
11
+ - Also skip Softlayer upload if missing username or api key
12
+
9
13
## [ 0.3.0] [ ] - 2017-07-11
10
14
### Added
11
15
- PostgreSQL support
@@ -42,7 +46,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
42
46
- Upload to Softlayer
43
47
- Travis CI for continuous integration
44
48
45
- [ Unreleased ] : https://github.ibm.com/bdu/gamora/compare/0.2.1...HEAD
49
+ [ Unreleased ] : https://github.ibm.com/bdu/gamora/compare/0.3.1...HEAD
50
+ [ 0.3.0 ] : https://github.ibm.com/bdu/gamora/compare/0.3.0...0.3.1
46
51
[ 0.3.0 ] : https://github.ibm.com/bdu/gamora/compare/0.2.1...0.3.0
47
52
[ 0.2.1 ] : https://github.ibm.com/bdu/gamora/compare/0.2.0...0.2.1
48
53
[ 0.2.0 ] : https://github.ibm.com/bdu/gamora/compare/0.1.7...0.2.0
Original file line number Diff line number Diff line change @@ -20,7 +20,17 @@ upload_backup() {
20
20
local remote_path
21
21
22
22
if [[ -z " ${SOFTLAYER_PATH:- } " ]]; then
23
- log " Skipping upload because no Softlayer credentials"
23
+ log " Skipping upload because no Softlayer path"
24
+ return
25
+ fi
26
+
27
+ if [[ -z " ${SOFTLAYER_USER:- } " ]]; then
28
+ log " Skipping upload because no Softlayer user"
29
+ return
30
+ fi
31
+
32
+ if [[ -z " ${SOFTLAYER_API_KEY:- } " ]]; then
33
+ log " Skipping upload because no Softlayer api key"
24
34
return
25
35
fi
26
36
You can’t perform that action at this time.
0 commit comments