scli 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/plugins/terminate-volume.rb +2 -2
- data/scli.gemspec +1 -1
- metadata +1 -1
@@ -11,7 +11,7 @@ module Scli
|
|
11
11
|
puts "Could not find volume: #{volume_id}"
|
12
12
|
else
|
13
13
|
if volume.destroy
|
14
|
-
|
14
|
+
print_volumes(volume)
|
15
15
|
puts "Is being destroyed...".red
|
16
16
|
else
|
17
17
|
puts "Volume could not be destroyed for some reason..."
|
@@ -21,4 +21,4 @@ module Scli
|
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
24
|
-
PLUGINS << ["delvol", "delete-volume,terminate-volume", "Volume ID (Req -v)", "scli delvol -v 23456, scli delvol 23456"]
|
24
|
+
PLUGINS << ["delvol", "delete-volume,terminate-volume", "Volume ID (Req -v)", "scli delvol -v 23456, scli delvol 23456"]
|
data/scli.gemspec
CHANGED