mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-06 15:20:36 +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
16 lines
330 B
Bash
16 lines
330 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# shellcheck disable=SC1090,SC1091
|
|
source "${SECRET_PROJECT_ROOT}/utils/build-utils.sh"
|
|
|
|
# Copying all the required files to the build directory:
|
|
preinstall_files "-T"
|
|
|
|
# Building .rpm package:
|
|
cd "$SCRIPT_DEST_DIR" && build_package "rpm"
|
|
|
|
# Cleaning up:
|
|
clean_up_files && cd "${SECRET_PROJECT_ROOT}"
|