10 lines
104 B
Bash
10 lines
104 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
REPO=$1
|
||
|
|
||
|
if [ "$REPO" == "" ]; then
|
||
|
REPO="pki-10.6"
|
||
|
fi
|
||
|
|
||
|
fedpkg copr-build --nowait $REPO
|