From d87ab94f0d71058c3d98356764323e124e07706a Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 30 Sep 2014 00:47:50 +0200 Subject: fix typos --- bin/reproducible_build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/reproducible_build.sh') diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 2be0c9c3..9cb477ed 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -78,7 +78,7 @@ if [[ $1 =~ ^-?[0-9]+$ ]] ; then done AMOUNT=$REAL_AMOUNT for PKG in $PACKAGES ; do - RESULT=$(sqlite3 ${PACKAGES_DB} "SELECT name FROM job_source WHERE ( name = '${PKG}' AND job = 'random' )") + RESULT=$(sqlite3 ${PACKAGES_DB} "SELECT name FROM job_sources WHERE ( name = '${PKG}' AND job = 'random' )") if [ "$RESULT" != "" ] ; then sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO job_sources VALUES ('$PKG','random')" fi @@ -107,7 +107,7 @@ else AMOUNT="${#@}" JOB=$(echo $JOB_NAME|cut -d "_" -f3) for PKG in $PACKAGES ; do - RESULT=$(sqlite3 ${PACKAGES_DB} "SELECT name FROM job_source WHERE ( name = '${PKG}' AND job = '$JOB' )") + RESULT=$(sqlite3 ${PACKAGES_DB} "SELECT name FROM job_sources WHERE ( name = '${PKG}' AND job = '$JOB' )") if [ "$RESULT" != "" ] ; then sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO job_sources VALUES ('$PKG','$JOB')" fi -- cgit v1.2.3-54-g00ecf