diff options
Diffstat (limited to 'container')
-rwxr-xr-x | container/bin/buildpackage.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/container/bin/buildpackage.sh b/container/bin/buildpackage.sh index 56b38a7..87d3354 100755 --- a/container/bin/buildpackage.sh +++ b/container/bin/buildpackage.sh @@ -14,7 +14,8 @@ while read -r NAME BASE VER _; do # Only build when needed if [ ! "$FORCE_REBUILD" = "yes" ] && compgen -G "/pkgout/${OUTNAME}*"; then echo "$NAME $VER ($ARCH) is already built. Skipping." - # TODO: install the package! it is a dependency! + # TODO: We are only skipping the main package. We will still be rebuilding all deps + # if the main package changes. Also this ignores Updates in dependencies. continue fi |