mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
52dd244a73
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
15 lines
273 B
Bash
Executable File
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}"
|