This commit is contained in:
Thomas Legay 2024-04-13 23:16:05 +02:00
parent 4aa8111f98
commit c72fb8b625
46 changed files with 361 additions and 47 deletions

View file

@ -38,7 +38,7 @@ configure_depot_nodejs() {
}
install_go() {
GO_VERSION=1.21.1
GO_VERSION=1.22.1
[ ! "$1" == "" ] && GO_VERSION=$1
PATH=$PATH:/usr/local/go/bin
if [ -e /usr/local/go/bin/go ] || [ ! "$(go version)" == "go version go${GO_VERSION} linux/amd64" ] ;

View file

@ -107,7 +107,7 @@ debmaker_run(){
sudo chroot ${MOUNT_PATH}/${APP}/ /tmp/src/exec_in_chroot.sh ${CURRENT_STEP}
done
fi
rm -fr dist/${APP}*
rm -fr dist/${APP}_*
find ${MOUNT_PATH}/${APP}/tmp/dist/ -name *.deb -exec cp -v {} dist/ \;
debmaker_umount_proc_sys ${MOUNT_PATH}/${APP}/
}