We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13159ae commit fd9baa9Copy full SHA for fd9baa9
scripts/deploy.mjs
@@ -8,9 +8,9 @@ const platform = os.platform();
8
/* eslint-disable no-console */
9
async function main(argv = process.argv) {
10
argv = argv.slice(2);
11
- const publishArgs = ['publish', '--config', './wrangler.toml', ...argv];
12
- console.error(['wrangler', ...publishArgs].join(' '));
13
- childProcess.execFileSync('wrangler', publishArgs, {
+ const deployArgs = ['deploy', '--config', './wrangler.toml', ...argv];
+ console.error(['wrangler', ...deployArgs].join(' '));
+ childProcess.execFileSync('wrangler', deployArgs, {
14
stdio: ['inherit', 'inherit', 'inherit'],
15
windowsHide: true,
16
encoding: 'utf-8',
0 commit comments