Skip to content

Commit

Permalink
Fix cowbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaelers committed Oct 3, 2024
1 parent 7def0b1 commit a4c2448
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions tools/local/cow-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ parse_arguments() {

parse_arguments $*

DIST_DIRS=`find /workspace/deploy -mindepth 1 -type d -print | grep -v "v1_11" | sort -r`
DIST_DIRS=$(find /workspace/deploy -mindepth 1 -type d -print | grep -v "v1_11" | sort -r)
for dir in $DIST_DIRS; do
dist=`basename $dir`
dist=$(basename $dir)
cd $dir
echo Updating $dist builder
DIST=$dist cowbuilder --update
DIST=$dist cowbuilder --update --basepath /var/cache/pbuilder/base-$dist.cow
echo Running build for $dist
DIST=$dist cowbuilder --build workrave*.dsc
DIST=$dist cowbuilder --build workrave*.dsc --basepath /var/cache/pbuilder/base-$dist.cow
done
2 changes: 1 addition & 1 deletion tools/local/ppa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ build_single() {
}

build_all() {
for series in oracular noble jammy focal; do
for series in oracular noble jammy; do
build_single $series
done
}
Expand Down

0 comments on commit a4c2448

Please sign in to comment.