Skip to content

Commit

Permalink
Fix shellcheck issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Salamandar committed Nov 4, 2024
1 parent fdb0fe1 commit 35bb21c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions rebuild-unstable
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

readonly THISDIR=$(dirname "$0")
readonly TIMETAG="$(date +%Y%m%d%H%M)"
readonly PACKAGES="moulinette SSOwat yunohost yunohost-admin yunohost-portal"
readonly PACKAGES=(moulinette SSOwat yunohost yunohost-admin yunohost-portal)
readonly DISTRIBS=(bookworm)
readonly FORCE="false"

source "$THISDIR/config/config"
Expand All @@ -12,10 +13,8 @@ mkdir -p "$LAST_BUILDS_CACHE"
function main()
{

for PACKAGE in $PACKAGES;
do
for DISTRIB in "bookworm";
do
for PACKAGE in "${PACKAGES[@]}"; do
for DISTRIB in "${DISTRIBS[@]}"; do
echo "-------------------------------------"
echo "Looking for update in ${PACKAGE} for ${DISTRIB}... "

Expand Down

0 comments on commit 35bb21c

Please sign in to comment.