write OCIs to temp files initially so make does not assume success
This commit is contained in:
parent
e052722c12
commit
253b6b122c
|
@ -44,7 +44,8 @@ define build
|
|||
$(EXTRA_ARGS) \
|
||||
$(NOCACHE_FLAG) \
|
||||
src/$(CATEGORY)/$(NAME) \
|
||||
| gzip > $@; \
|
||||
| gzip > $@.tmp; \
|
||||
mv $@.tmp $@; \
|
||||
gunzip -c $@ | docker load; \
|
||||
)
|
||||
$(eval TIMESTAMP := $(shell TZ=GMT date +"%Y-%m-%dT%H:%M:%SZ"))
|
||||
|
|
Reference in New Issue