Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zmap
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
zmap
Commits
a3f11c61
Commit
a3f11c61
authored
18 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
add cmdline flag to get release notes made.
parent
0dc350cb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/zmapbuild
+18
-2
18 additions, 2 deletions
scripts/zmapbuild
with
18 additions
and
2 deletions
scripts/zmapbuild
+
18
−
2
View file @
a3f11c61
...
...
@@ -16,8 +16,10 @@ ZBmailOnExit="true"
# set up usage strings.
cmdstring
=
'[-v -r -u -m <machine> -I -n <notify@email> -i ] <target_build_directory>'
cmdstring
=
'[
-d
-v -r -u -m <machine> -I -n <notify@email> -i ] <target_build_directory>'
descstring
=
'
-d call zmapreleasenotes script to construct a set of release notes
-I initialise the directory (rm -rf target, cvs co) also makes the docs
-v do the build replacing target_build_directory name with "ZMap.<version>.BUILD"
...
...
@@ -52,8 +54,9 @@ notify=""
pinstall
=
""
prefix
=
""
while
getopts
":ruvm:n:Ii"
opt
;
do
while
getopts
":
d
ruvm:n:Ii"
opt
;
do
case
$opt
in
d
)
release_notes
=
'TRUE'
;;
r
)
tag
=
"release"
;;
u
)
tag
=
"update"
;;
v
)
version
=
"true"
;;
...
...
@@ -86,6 +89,19 @@ remote_builddir=$ZBRbuildBase
remote_targetdir
=
$remote_builddir
/
$targetdir
remote_cvscopy
=
$remote_targetdir
#
# If user requested release notes then these must be done _before_ the build/tag
# so that they contain the correct zmap release version.
#
if
[
"
$release_notes
"
]
;
then
ZBlogmsg
'Making release notes'
zmapreleasenotes
$local_builddir
||
ZBmsgAndExit
"zmapreleasenotes script failed."
fi
#
# move to the generic build directory and do a cvs checkout of the source
#
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment