From 6e1513d31222848ca88a2ead0871ab63065a97c7 Mon Sep 17 00:00:00 2001 From: Raphael <68374617+raphaelscholle@users.noreply.github.com> Date: Sun, 18 Feb 2024 20:57:36 +0100 Subject: [PATCH] Update build_chroot.sh --- build_chroot.sh | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/build_chroot.sh b/build_chroot.sh index 045a526..b4f8628 100644 --- a/build_chroot.sh +++ b/build_chroot.sh @@ -18,18 +18,5 @@ echo "push to cloudsmith" git describe --exact-match HEAD >/dev/null 2>&1 echo "Pushing the package to OpenHD 2.3 repository" API_KEY=$(cat /opt/additionalFiles/cloudsmith_api_key.txt) -DISTRO=$(cat /opt/additionalFiles/distro.txt) -FLAVOR=$(cat /opt/additionalFiles/flavor.txt) -BOARD=$(cat /opt/additionalFiles/board.txt) -if [ "$BOARD" = "rk3588" ]; then - for file in *.deb; do - mv "$file" "${file%.deb}-rk3588.deb" - done - cloudsmith push deb --api-key "$API_KEY" openhd/dev-release/${DISTRO}/${FLAVOR} *.deb || exit 1 -else -for file in *.deb; do - mv "$file" "${file%.deb}-rk3566.deb" - done - cloudsmith push deb --api-key "$API_KEY" openhd/dev-release/${DISTRO}/${FLAVOR} *.deb || exit 1 -fi +cloudsmith push deb --api-key "$API_KEY" openhd/dev-release/debian/bullseye *.deb || exit 1