Skip to content
Snippets Groups Projects
Commit 7cf25a6d authored by Jorge Canizales's avatar Jorge Canizales
Browse files

Merge pull request #1193 from tbetbetbe/grpc_tools_deb_builder_configure_version

Grpc tools deb builder configure version
parents 300ebc4c f82b3783
No related branches found
No related tags found
No related merge requests found
......@@ -30,11 +30,18 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Where to put resulting .deb packages.
deb_dest="deb_out"
deb_dest="/tmp/deb_out"
mkdir -p $deb_dest
version='0.5.0.0'
# Update version from default values if the file /version.txt exists
#
# - when present, /version.txt will added by the docker build.
pkg_version='0.5.0'
if [ -f /version.txt ]; then
pkg_version=$(cat /version.txt)
fi
version="${pkg_version}.0"
echo "Target release => $pkg_version"
if [ -f /.dockerinit ]; then
# We're in Docker where uname -p returns "unknown".
......@@ -110,8 +117,5 @@ do
dpkg-deb -c $deb_path
echo "Problems reported by lintian:"
lintian $deb_path
echo
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment