mirror of
https://github.com/vyos/vyos-build.git
synced 2025-10-01 20:28:40 +02:00
opennhrp: remove first character from version number
If not deployment of the package will fail with: Version field value 'v0.14-20-g613277f': version number does not start with digit
This commit is contained in:
parent
5f2f500f5e
commit
3766906e19
@ -21,8 +21,10 @@ install --mode 0644 etc/racoon-ph1down.sh debian/etc
|
||||
install --strip --mode 0755 nhrp/opennhrp debian/usr/sbin
|
||||
install --strip --mode 0755 nhrp/opennhrpctl debian/usr/sbin
|
||||
|
||||
# Version' field value 'v0.14-20-g613277f': version number does not start with digit
|
||||
# "cut" first character from version string
|
||||
fpm --input-type dir --output-type deb --name opennhrp \
|
||||
--version $(git describe --always) --deb-compression gz \
|
||||
--version $(git describe --always | cut -c2-) --deb-compression gz \
|
||||
--maintainer "VyOS Package Maintainers <maintainers@vyos.net>" \
|
||||
--description "NBMA Next Hop Resolution Protocol daemon" \
|
||||
--license "MIT" -C $INSTALL_DIR --package ..
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user