Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit e077fd8

Browse files
committed
Avoid unnecessary error creating cache dir
1 parent 6a976ab commit e077fd8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.azure/linux-stack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
# stack test --stack-yaml $(YAML_FILE)
8585
# displayName: Run Test
8686
- bash: |
87-
mkdir .azure-cache
87+
mkdir -p .azure-cache
8888
tar -czf .azure-cache/stack-root.tar.gz $STACK_ROOT
8989
tar -czf .azure-cache/stack-work.tar.gz .stack-work
9090
displayName: "Pack cache"

.azure/macos-stack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
# stack test --stack-yaml $(YAML_FILE)
8282
# displayName: Run Test
8383
- bash: |
84-
mkdir .azure-cache
84+
mkdir -p .azure-cache
8585
tar -czf .azure-cache/stack-root.tar.gz $STACK_ROOT
8686
tar -czf .azure-cache/stack-work.tar.gz .stack-work
8787
displayName: "Pack cache"

0 commit comments

Comments
 (0)