Skip to content

Commit

Permalink
chore: move console log
Browse files Browse the repository at this point in the history
  • Loading branch information
robingenz committed Apr 30, 2024
1 parent c2b800c commit 207d566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/apps/bundles/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ export default defineCommand({
const zipBuffer = await zip.zipFolder(path);
formData.append('file', zipBuffer, { filename: 'bundle.zip' });
}
consola.start('Uploading...');
if (channelName) {
formData.append('channelName', channelName);
}
consola.start('Uploading...');
// Upload the bundle
try {
const response = await appBundlesService.create({ appId: appId, formData: formData });
Expand Down

0 comments on commit 207d566

Please sign in to comment.