Replaced mkdir with mkdir -p

This commit is contained in:
Kirill Fedoseev 2019-10-28 19:14:57 +03:00
parent f8e8ea8fe5
commit 43cda189ea
1 changed files with 3 additions and 2 deletions

View File

@ -27,7 +27,7 @@ orbs:
- run:
name: "Backup blockchains data using temporary container"
command: |
mkdir ./workspace
mkdir -p ./workspace
docker run --rm -v "ganache_side_data:/ganache_side_data" -v "ganache_home_data:/ganache_home_data" -itd --name tmp alpine:3.9.4
docker cp "tmp:/ganache_side_data" "./workspace/ganache_side_data"
docker cp "tmp:/ganache_home_data" "./workspace/ganache_home_data"
@ -55,13 +55,14 @@ orbs:
- restore_cache:
name: "Restore tss image from cache"
key: "tss-v1-{{ .Branch }}"
- load_tss
save_tss:
description: "Save tss image to workspace"
steps:
- run:
name: "Save tss image to archive"
command: |
mkdir ./workspace
mkdir -p ./workspace
docker save tss | gzip > ./workspace/tss.tar.gz
- persist_to_workspace:
name: "Save tss image to workspace"