Skip to content

Commit 46cef6e

Browse files
committed
Export cleans up file in case of errors
Signed-off-by: Max Brauer <[email protected]>
1 parent c4dd792 commit 46cef6e

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/workflows/e2e.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,10 @@ jobs:
9292
./app/crane export - - < ubuntu.tar > filesystem.tar
9393
ls -la *.tar
9494
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

cmd/crane/cmd/export.go

+7-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func NewCmdExport(options *[]crane.Option) *cobra.Command {
4040
# Read image from stdin
4141
crane export - ubuntu.tar`,
4242
Args: cobra.RangeArgs(1, 2),
43-
RunE: func(_ *cobra.Command, args []string) error {
43+
RunE: func(_ *cobra.Command, args []string) (err error) {
4444
src, dst := args[0], "-"
4545
if len(args) > 1 {
4646
dst = args[1]
@@ -50,7 +50,12 @@ func NewCmdExport(options *[]crane.Option) *cobra.Command {
5050
if err != nil {
5151
return fmt.Errorf("failed to open %s: %w", dst, err)
5252
}
53-
defer f.Close()
53+
defer func() {
54+
f.Close()
55+
if err != nil {
56+
os.Remove(f.Name())
57+
}
58+
}()
5459

5560
var img v1.Image
5661
if src == "-" {

0 commit comments

Comments
 (0)