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

Commit

Permalink
fix: fixes directory permissions (#224)
Browse files Browse the repository at this point in the history
Fixes #189
  • Loading branch information
tim-field authored and gregberge committed Nov 11, 2018
1 parent 61e3078 commit 3277adf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shipit-deploy/src/tasks/deploy/fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const fetchTask = shipit => {
shipit.log('Create workspace...')
/* eslint-disable no-param-reassign */
if (shipit.config.shallowClone) {
const tmpDir = await tmp.dir()
const tmpDir = await tmp.dir({mode: "0755"})
shipit.workspace = tmpDir.path
} else {
shipit.workspace = shipit.config.workspace
Expand Down

0 comments on commit 3277adf

Please sign in to comment.