Litte change in release.sh
Add set -e Remove make clean
This commit is contained in:
parent
4b4cc338ff
commit
45e877705a
1 changed files with 1 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# This script is used to release a version.
|
# This script is used to release a version.
|
||||||
|
set -e
|
||||||
|
|
||||||
function set_version {
|
function set_version {
|
||||||
echo -n "Replacing version in source files to $1"
|
echo -n "Replacing version in source files to $1"
|
||||||
|
|
@ -31,7 +32,6 @@ vi +2 ChangeLog
|
||||||
set_version $VERSION
|
set_version $VERSION
|
||||||
|
|
||||||
echo "Building Qt applications..."
|
echo "Building Qt applications..."
|
||||||
make clean
|
|
||||||
./setup.py sdist bdist clean -a || exit 1
|
./setup.py sdist bdist clean -a || exit 1
|
||||||
|
|
||||||
echo "Generating manpages..."
|
echo "Generating manpages..."
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue