test/make-tags.sh: KOJI_SERVER env variable
Introduce KOJI_SERVER that can be set outside, defaulting to http://localhost:8080/kojihub for local testing.
This commit is contained in:
parent
30aa71563c
commit
b1b7425ca6
1 changed files with 3 additions and 1 deletions
|
|
@ -1,7 +1,9 @@
|
|||
#!/usr/bin/sh
|
||||
set -ux
|
||||
|
||||
KOJI="koji --server=http://localhost:8080/kojihub --user=kojiadmin --password=kojipass --authtype=password"
|
||||
KOJI_SERVER=${KOJI_SERVER:-http://localhost:8080/kojihub}
|
||||
|
||||
KOJI="koji --server=${KOJI_SERVER} --user=kojiadmin --password=kojipass --authtype=password"
|
||||
|
||||
$KOJI add-tag f32
|
||||
$KOJI add-tag --parent f32 f32-candidate
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue