Skip to content

Commit

Permalink
worker file path corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
HeeManSu committed Mar 15, 2024
1 parent a1274cd commit 3d0c12d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/autoDeploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const findJsonFilesRecursively = async (
await findJsonFilesRecursively(path.join(appsDir, file.name));
} else if (file.name === 'metacall.json') {
const filePath = path.join(appsDir, file.name);
const desiredPath = path.join(__dirname, '/worker/index.js');
const desiredPath = path.join(__dirname, '../worker/index.js');
const id = path.basename(appsDir);

currentFile.id = id;
Expand Down

0 comments on commit 3d0c12d

Please sign in to comment.