Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b1103a2c
Commit
b1103a2c
authored
Jun 07, 2017
by
Glenn Morris
Browse files
* make-dist: Check a release has a ChangeLog with a release notice.
parent
ed226a5b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
make-dist
make-dist
+15
-0
No files found.
make-dist
View file @
b1103a2c
...
...
@@ -297,6 +297,21 @@ if [ $check = yes ]; then
make
--question
info
||
error
=
yes
fi
## Is this a release?
case
$version
in
[
1-9][0-9].[0-9]
)
if
[
-e
ChangeLog
]
;
then
if
!
grep
-q
"Version
$version
released"
ChangeLog
;
then
echo
"No release notice in ChangeLog"
error
=
yes
fi
else
echo
"A release must have a ChangeLog"
error
=
yes
fi
;;
esac
if
[
$error
=
yes
]
;
then
echo
"Failed checks"
>
&2
exit
1
...
...
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