Skip to content

Commit c3ade7e

Browse files
committed
CLI: Code cleanup
1 parent 35f5efd commit c3ade7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/cli/lib/commands/deploy.js.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ const deployBucket = async ({ all, yes } = {}) => {
606606
if (configBuckets.length === 0) {
607607
throw new Error("No buckets found in the current directory. Run `appwrite init bucket` to fetch all your buckets.");
608608
}
609-
bucketIds.push(...configBuckets.map((c) => c.$id));
609+
bucketIds.push(...configBuckets.map((b) => b.$id));
610610
}
611611

612612
if(bucketIds.length <= 0) {

0 commit comments

Comments
 (0)