Skip to content

Commit cbfff80

Browse files
adamanciniclaude
andcommitted
fix: customer-create task to use channel ID directly with --channel flag
- Remove incorrect --channel-id flag usage - Use --channel flag which accepts both channel names and IDs - Simplify logic by passing channel ID directly to --channel parameter 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 9ae3f61 commit cbfff80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

applications/wg-easy/Taskfile.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -473,9 +473,9 @@ tasks:
473473
# No existing customer found, create a new one
474474
echo "Creating new customer {{.NORMALIZED_CUSTOMER_NAME}} for app {{.APP_SLUG}}..."
475475
476-
# Determine which channel parameter to use
476+
# Determine which channel parameter to use (--channel accepts both names and IDs)
477477
if [ -n "{{.RELEASE_CHANNEL_ID}}" ]; then
478-
CHANNEL_PARAM="--channel-id {{.RELEASE_CHANNEL_ID}}"
478+
CHANNEL_PARAM="--channel {{.RELEASE_CHANNEL_ID}}"
479479
echo "Using channel ID: {{.RELEASE_CHANNEL_ID}}"
480480
else
481481
CHANNEL_PARAM="--channel {{.RELEASE_CHANNEL}}"

0 commit comments

Comments
 (0)