Skip to content
This repository was archived by the owner on Mar 14, 2023. It is now read-only.

Commit 3277adf

Browse files
tim-fieldgregberge
authored andcommitted
fix: fixes directory permissions (#224)
Fixes #189
1 parent 61e3078 commit 3277adf

File tree

1 file changed

+1
-1
lines changed
  • packages/shipit-deploy/src/tasks/deploy

1 file changed

+1
-1
lines changed

packages/shipit-deploy/src/tasks/deploy/fetch.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const fetchTask = shipit => {
2222
shipit.log('Create workspace...')
2323
/* eslint-disable no-param-reassign */
2424
if (shipit.config.shallowClone) {
25-
const tmpDir = await tmp.dir()
25+
const tmpDir = await tmp.dir({mode: "0755"})
2626
shipit.workspace = tmpDir.path
2727
} else {
2828
shipit.workspace = shipit.config.workspace

0 commit comments

Comments
 (0)