From 18ed94a9b46db7045eda7e27e53ee7edbe76fbbc Mon Sep 17 00:00:00 2001 From: Ryan Fortner <71036629+ryanfortner@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:46:41 -0500 Subject: [PATCH] Update create-deb.sh --- create-deb.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/create-deb.sh b/create-deb.sh index acfc0284..3c07d0d7 100644 --- a/create-deb.sh +++ b/create-deb.sh @@ -1,5 +1,7 @@ #!/bin/bash +echo $(nproc) + DIRECTORY=$(pwd) export DEBIAN_FRONTEND=noninteractive @@ -79,7 +81,6 @@ for target in ${targets[@]}; do if [[ $target == "ARM64" ]]; then sudo checkinstall -y -D --pkgversion="$DEBVER" --arch="arm64" --provides="box64" --conflicts="$conflict_list" --maintainer="Ryan Fortner " --pkglicense="MIT" --pkgsource="https://github.com/ptitSeb/box64" --pkggroup="utils" --pkgname="box64" --install="no" make install || error "Checkinstall failed to create a deb package." - ls | grep box64 else sudo checkinstall -y -D --pkgversion="$DEBVER" --arch="arm64" --provides="box64" --conflicts="$conflict_list" --maintainer="Ryan Fortner " --pkglicense="MIT" --pkgsource="https://github.com/ptitSeb/box64" --pkggroup="utils" --pkgname="box64-$target" --install="no" make install || error "Checkinstall failed to create a deb package." fi