9e75ed5787
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/shim-unsigned-aarch64#00c45e20c28efbe238dd6b79037818606c6b6edd
9 lines
125 B
Bash
Executable File
9 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
if [ $# -ne 1 ]; then
|
|
echo "usage: ./build <release>" 1>&2
|
|
exit 1
|
|
fi
|
|
arm-koji build $1 `fedpkg giturl`
|
|
|