Skip to content

Commit c20f4db

Browse files
Fix error in name of Linux tag to push
There was an error in name of Linux tag to push for GNU release: was arc-gdb-YYYY.MM, but should be arc-gnu-YYYY.MM. Signed-off-by: Anton Kolesov <[email protected]>
1 parent f0c25b8 commit c20f4db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

push-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ do
6161
# tag-release.sh updates it.
6262
case $repo in
6363
gdb) to_push=${tagname}-gdb ;;
64-
linux) to_push=${tagname/arc-/arc-gdb-} ;;
64+
linux) to_push=${tagname/arc-/arc-gnu-} ;;
6565
toolchain) to_push="$tagname arc-staging" ;;
6666
*) to_push=$tagname ;;
6767
esac

0 commit comments

Comments
 (0)