This commit is contained in:
Frank Denis 2017-09-12 17:56:14 +02:00
parent 70bab797dc
commit 5f8505d80d
1 changed files with 3 additions and 3 deletions

View File

@ -16,8 +16,8 @@ mk_tarball() {
# TODO update this part to copy the artifacts that make sense for your project
# NOTE All Cargo build artifacts will be under the 'target/$TARGET/{debug,release}'
cp target/$TARGET/release/iptoasn_webservice $td
dostrip $td/iptoasn_webservice
cp target/$TARGET/release/iptoasn-webservice $td
dostrip $td/iptoasn-webservice
pushd $td
@ -36,7 +36,7 @@ mk_tarball() {
# fully conform to Debian packaging guideliens (`lintian` raises a few warnings/errors)
mk_deb() {
# TODO update this part to package the artifacts that make sense for your project
dobin target/$TARGET/release/iptoasn_webservice
dobin target/$TARGET/release/iptoasn-webservice
}
main() {