fix bad sql in SetBuildRootPackages

This commit is contained in:
Neil Hanlon 2023-01-20 16:17:08 -05:00
parent fc32d87087
commit 897bc0969d
Signed by: neil
GPG Key ID: 705BC21EC3C70F34
1 changed files with 2 additions and 1 deletions

View File

@ -32,6 +32,7 @@ package serverpsql
import (
"fmt"
"github.com/jmoiron/sqlx/types"
"github.com/lib/pq"
"google.golang.org/protobuf/encoding/protojson"
@ -350,7 +351,7 @@ func (a *Access) SetBuildRootPackages(projectId string, srpmPackages pq.StringAr
_, err := a.query.Exec(
`
update projects set srpm_stage_packages = $2, build_stage_packages = $3
where project_id = $1
where id = $1
`,
projectId,
srpmPackages,