File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 92
92
./app/crane export - - < ubuntu.tar > filesystem.tar
93
93
ls -la *.tar
94
94
95
+ - name : crane export leaves filesystem clean in case of error
96
+ shell : bash
97
+ run : |
98
+ set -euxo pipefail
99
+
100
+ ./app/crane export this-image-does-not-exist export.tar
101
+ [[ -f export.tar ]] && echo "did not expect export.tar to exist" && exit 1
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ func NewCmdExport(options *[]crane.Option) *cobra.Command {
40
40
# Read image from stdin
41
41
crane export - ubuntu.tar` ,
42
42
Args : cobra .RangeArgs (1 , 2 ),
43
- RunE : func (_ * cobra.Command , args []string ) error {
43
+ RunE : func (_ * cobra.Command , args []string ) ( err error ) {
44
44
src , dst := args [0 ], "-"
45
45
if len (args ) > 1 {
46
46
dst = args [1 ]
@@ -50,7 +50,12 @@ func NewCmdExport(options *[]crane.Option) *cobra.Command {
50
50
if err != nil {
51
51
return fmt .Errorf ("failed to open %s: %w" , dst , err )
52
52
}
53
- defer f .Close ()
53
+ defer func () {
54
+ f .Close ()
55
+ if err != nil {
56
+ os .Remove (f .Name ())
57
+ }
58
+ }()
54
59
55
60
var img v1.Image
56
61
if src == "-" {
You can’t perform that action at this time.
0 commit comments