git-secret/utils/rpm/rpm-build.sh
2021-05-04 13:01:41 +03:00

16 lines
330 B
Bash
Executable File

#!/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}"