You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
git-secret/utils/deb/deb-build.sh

15 lines
268 B
Bash

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