From dadda123f06226886fa709721cb05401752f3e0e Mon Sep 17 00:00:00 2001 From: Joseph Mearman Date: Tue, 25 Nov 2025 13:54:29 +0000 Subject: [PATCH] Update scripts/bash/create-new-feature.sh Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- scripts/bash/create-new-feature.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bash/create-new-feature.sh b/scripts/bash/create-new-feature.sh index 640ba73c..c40cfd77 100644 --- a/scripts/bash/create-new-feature.sh +++ b/scripts/bash/create-new-feature.sh @@ -246,7 +246,7 @@ if [ -z "$BRANCH_NUMBER" ]; then fi fi -# Force base-10 interpretation to prevent octal conversion (027 → 23) +# Force base-10 interpretation to prevent octal conversion (e.g., 010 → 8 in octal, but should be 10 in decimal) FEATURE_NUM=$(printf "%03d" "$((10#$BRANCH_NUMBER))") BRANCH_NAME="${FEATURE_NUM}-${BRANCH_SUFFIX}"