1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-api-healthcheck synced 2026-07-03 11:53:43 +02:00

Rename generated package info file from scrtips/info to scripts/pkg_info

This commit is contained in:
Henrik Hautakoski 2021-12-30 18:49:25 +01:00
parent 8085eaa81d
commit a757c0dde5
3 changed files with 4 additions and 3 deletions

View file

@ -25,7 +25,7 @@ info-file :
PACKAGE_DESCRIPTION=\"HAproxy healthcheck program for EOSIO API.\" "\n"\ PACKAGE_DESCRIPTION=\"HAproxy healthcheck program for EOSIO API.\" "\n"\
PACKAGE_VERSION=\"1.0\" "\n"\ PACKAGE_VERSION=\"1.0\" "\n"\
PACKAGE_PREFIX=\"$(PREFIX:/%=%)\" "\n"\ PACKAGE_PREFIX=\"$(PREFIX:/%=%)\" "\n"\
PACKAGE_PROGRAM=\"build/$(PROGRAM_NAME)\" > scripts/info PACKAGE_PROGRAM=\"build/$(PROGRAM_NAME)\" > scripts/pkg_info
package_deb: info-file package_deb: info-file
./scripts/build.sh deb $(realpath build) ./scripts/build.sh deb $(realpath build)

1
scripts/.gitignore vendored
View file

@ -1,5 +1,6 @@
pack/ pack/
info info
pkg_info
*.deb *.deb
*.tar *.tar
*.tar.* *.tar.*

View file

@ -19,9 +19,9 @@ BUILD_DIR=$2
export BASE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" export BASE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
export TEMPLATE_DIR=${BASE_DIR}/templates export TEMPLATE_DIR=${BASE_DIR}/templates
# Info # Package info
set -o allexport set -o allexport
source ${BASE_DIR}/info source ${BASE_DIR}/pkg_info
set +o allexport set +o allexport
# Directories. # Directories.