Skip to content

Commit 0e24e08

Browse files
committed
chore: Update worker commands
1 parent b74fa91 commit 0e24e08

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/create-job/cards/SecondaryPluginsCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default function SecondaryPluginsCard() {
5656
repositoryUrl: '',
5757
username: '',
5858
accessToken: '',
59-
workerCommands: [{ command: 'npm install' }, { command: 'npm build' }, { command: 'npm start' }],
59+
workerCommands: [{ command: 'npm install' }, { command: 'npm run build' }, { command: 'npm run start' }],
6060
},
6161
...PLUGIN_DEFAULTS,
6262
});

src/shared/jobs/deployment-type/DeploymentTypeSectionCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function DeploymentTypeSectionCard({ isEditingJob }: { isEditingJob?: boolean })
3434
repositoryUrl: '',
3535
username: '',
3636
accessToken: '',
37-
workerCommands: [{ command: 'npm install' }, { command: 'npm build' }, { command: 'npm start' }],
37+
workerCommands: [{ command: 'npm install' }, { command: 'npm run build' }, { command: 'npm run start' }],
3838
});
3939
}
4040
};

0 commit comments

Comments
 (0)