Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitflow
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tools
gitflow
Commits
adfd408c
Commit
adfd408c
authored
Feb 13, 2012
by
Vincent Driessen
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #160 from Zoramite/feature/Issue50
Adding the `eval` to force variable expansion.
parents
bb1becd6
f66eba89
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
git-flow-hotfix
git-flow-hotfix
+1
-1
git-flow-release
git-flow-release
+1
-1
No files found.
git-flow-hotfix
View file @
adfd408c
...
@@ -269,7 +269,7 @@ cmd_finish() {
...
@@ -269,7 +269,7 @@ cmd_finish() {
flag sign && opts="$opts -s"
flag sign && opts="$opts -s"
[ "$FLAGS_signingkey" != "" ] && opts="$opts -u '$FLAGS_signingkey'"
[ "$FLAGS_signingkey" != "" ] && opts="$opts -u '$FLAGS_signingkey'"
[ "$FLAGS_message" != "" ] && opts="$opts -m '$FLAGS_message'"
[ "$FLAGS_message" != "" ] && opts="$opts -m '$FLAGS_message'"
git tag $opts "$VERSION_PREFIX$VERSION" || \
eval
git tag $opts "$VERSION_PREFIX$VERSION" || \
die "Tagging failed. Please run finish again to retry."
die "Tagging failed. Please run finish again to retry."
fi
fi
fi
fi
...
...
git-flow-release
View file @
adfd408c
...
@@ -239,7 +239,7 @@ cmd_finish() {
...
@@ -239,7 +239,7 @@ cmd_finish() {
flag sign && opts="$opts -s"
flag sign && opts="$opts -s"
[ "$FLAGS_signingkey" != "" ] && opts="$opts -u '$FLAGS_signingkey'"
[ "$FLAGS_signingkey" != "" ] && opts="$opts -u '$FLAGS_signingkey'"
[ "$FLAGS_message" != "" ] && opts="$opts -m '$FLAGS_message'"
[ "$FLAGS_message" != "" ] && opts="$opts -m '$FLAGS_message'"
git tag $opts "$tagname" || \
eval
git tag $opts "$tagname" || \
die "Tagging failed. Please run finish again to retry."
die "Tagging failed. Please run finish again to retry."
fi
fi
fi
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment