Skip to content

Commit cefe0db

Browse files
committed
[install] in release.sh, disable nested tags
1 parent 01daafb commit cefe0db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

epochX/cudacpp/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ echo ${runnTAG}
3434
# Create the unique (~permanent) tag
3535
git tag ${uniqTAG} ${BRANCH} -m "Unique tag ${uniqTAG}"
3636

37-
# Create the running tag
37+
# Create the running tag (use ^{} to disable nested tags)
3838
# (use '-f' to replace any previously existing tag with the same name)
39-
git tag -f ${runnTAG} ${uniqTAG} -m "Running tag ${runnTAG} (linked to unique tag ${uniqTAG})"
39+
git tag -f ${runnTAG} ${uniqTAG}^{} -m "Running tag ${runnTAG} (linked to unique tag ${uniqTAG})"
4040

4141
# Push the tags to the remote repository
4242
# (use '-f' to replace any previously existing tag with the same name)

0 commit comments

Comments
 (0)