mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-12-21 02:08:29 +00:00
Merge pull request #91 from NeilHanlon/main
fix bad sql in SetBuildRootPackages
This commit is contained in:
commit
3e345060bf
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user