Skip to content

Commit

Permalink
fix 9e42ce5 missing $
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxmaniac committed Apr 20, 2015
1 parent 9e42ce5 commit 34094e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/repository_checker
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,14 @@ validate-source-bin-versions() {

for repository in $(awk '/^Codename: / {print $2}' "${REPOSITORY}"/conf/distributions 2>"${LOGFILE}") ; do
for sourcepackage in $(reprepro $REPREPRO_OPTS -A source -b "${REPOSITORY}" --list-format='${package}\n' list $repository 2>"${LOGFILE}") ; do
if _opt_validate_skip_package && _skip_package "${SKIP_PACKAGE}" "$sourcepackage" ; then
if $_opt_validate_skip_package && _skip_package "${SKIP_PACKAGE}" "$sourcepackage" ; then
echo "skipping: $sourcepackage"
continue
fi
sourceversion=$(reprepro $REPREPRO_OPTS -A source -b "${REPOSITORY}" --list-format='${version}\n' list $repository $sourcepackage 2>"${LOGFILE}")
for binarypackage in $(reprepro $REPREPRO_OPTS -b "${REPOSITORY}" --list-format='${package}\n' -T deb listfilter "$repository" "\$Source (==$sourcepackage)" 2>"${LOGFILE}") ; do

if _opt_validate_skip_package && _skip_package "${SKIP_PACKAGE}" "$binarypackage" ; then
if $_opt_validate_skip_package && _skip_package "${SKIP_PACKAGE}" "$binarypackage" ; then
echo "skipping: $binarypackage"
continue
fi
Expand Down

0 comments on commit 34094e5

Please sign in to comment.