Skip to content

Commit bc59938

Browse files
committed
release-version.sh: always add release.properties
Even if release.properties is in the .gitignore, we want it to be added here, for this special purpose. See #17.
1 parent a048aeb commit bc59938

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

release-version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ test -n "$tag" &&
180180
sed -i.bak -e 's|^scm.url=scm\\:git\\:git@github.com\\:|scm.url=scm\\:git\\:git\\://github.com/|' release.properties &&
181181
rm release.properties.bak &&
182182
$DRY_RUN git checkout "$tag" &&
183-
$DRY_RUN git add release.properties &&
183+
$DRY_RUN git add -f release.properties &&
184184
$DRY_RUN git commit --amend --no-edit &&
185185
$DRY_RUN git tag -d "$tag" &&
186186
$DRY_RUN git tag "$tag" HEAD &&

0 commit comments

Comments
 (0)