We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a74d508 commit c95a860Copy full SHA for c95a860
README.md
@@ -957,6 +957,7 @@ Same as Hack, without step 5
957
958
#### Fixes
959
960
+* `scw stop server1 server2` doesn't exit on first stopping failure
961
* `scw run IMAGE [COMMAND]`, default *COMMAND* is now `if [ -x /bin/bash ]; then exec /bin/bash; else exec /bin/sh; fi`
962
963
### 1.1.0 (2015-06-12)
commands/stop.go
@@ -59,8 +59,8 @@ func runStop(cmd *types.Command, args []string) {
59
} else {
60
fmt.Println(needle)
61
}
62
- if hasError {
63
- os.Exit(1)
64
- }
+ }
+ if hasError {
+ os.Exit(1)
65
66
0 commit comments