Skip to content

Commit 8817a56

Browse files
committed
Deploy Production Code for Commit ae37c60 🚀
1 parent ae37c60 commit 8817a56

File tree

4 files changed

+37
-8
lines changed

4 files changed

+37
-8
lines changed

lib/git.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,12 @@ function deploy(action) {
8686
Boolean((yield (0, execute_1.execute)(`git ls-remote --heads ${action.repositoryPath} refs/heads/${action.branch}`, action.workspace, action.silent)).stdout);
8787
yield (0, worktree_1.generateWorktree)(action, temporaryDeploymentDirectory, branchExists);
8888
/* Relaxes permissions of folder due to be deployed so rsync can write to/from it. */
89-
yield (0, execute_1.execute)(`chmod -R +rw ${action.folderPath}`, action.workspace, action.silent);
89+
try {
90+
yield (0, execute_1.execute)(`chmod -R +rw ${action.folderPath}`, action.workspace, action.silent);
91+
}
92+
catch (_a) {
93+
(0, core_1.info)(`Unable to modify permissions…`);
94+
}
9095
// Ensures that items that need to be excluded from the clean job get parsed.
9196
let excludes = '';
9297
if (action.clean && action.cleanExclude) {

node_modules/@types/node/README.md

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/node/crypto.d.ts

+28-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/node/package.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)