Skip to content

Commit

Permalink
Build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
resolve-bot committed Feb 19, 2021
1 parent 373a4fd commit 6327e02
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deploy-cloud/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5160,7 +5160,7 @@ const processWorkspaces = (processor, debug, cwd = process.cwd()) => __awaiter(v
debug(output);
const info = JSON.parse(output);
const workspaces = Object.keys(info).map((name) => {
const location = path.resolve(info[name].location);
const location = path.resolve(cwd, info[name].location);
debug(`[${name}] enqueue processing at ${location}`);
return {
name,
Expand Down
2 changes: 1 addition & 1 deletion publish/dist/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5412,7 +5412,7 @@ const processWorkspaces = (processor, debug, cwd = process.cwd()) => __awaiter(v
debug(output);
const info = JSON.parse(output);
const workspaces = Object.keys(info).map((name) => {
const location = path.resolve(info[name].location);
const location = path.resolve(cwd, info[name].location);
debug(`[${name}] enqueue processing at ${location}`);
return {
name,
Expand Down
2 changes: 1 addition & 1 deletion publish/dist/post/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5412,7 +5412,7 @@ const processWorkspaces = (processor, debug, cwd = process.cwd()) => __awaiter(v
debug(output);
const info = JSON.parse(output);
const workspaces = Object.keys(info).map((name) => {
const location = path.resolve(info[name].location);
const location = path.resolve(cwd, info[name].location);
debug(`[${name}] enqueue processing at ${location}`);
return {
name,
Expand Down

0 comments on commit 6327e02

Please sign in to comment.