git-secret/utils/deb/deb-build.sh
nictrix 52dd244a73
add integration tests for alpine
adds a docker file for integration tests
update integration framework and tests to include alpine
update makefile to include apk builds for alpine
update build utils to include apk compatibility
changed a couple switch lines to be compatible with alpine
adds travis tests
2017-11-10 11:31:22 -07:00

15 lines
273 B
Bash
Executable File

#!/usr/bin/env bash
set -e
# shellcheck disable=SC1090,SC1091
source "${SECRET_PROJECT_ROOT}/utils/build-utils.sh"
preinstall_files "-T"
# Building .deb package:
cd "$SCRIPT_DEST_DIR" && build_package "deb"
# Cleaning up:
clean_up_files && cd "${SECRET_PROJECT_ROOT}"