mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 02:18:16 -07:00
26 lines
536 B
Bash
Executable File
26 lines
536 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o xtrace
|
|
|
|
# move to source directory
|
|
pushd ${SOURCE_DIR}
|
|
|
|
cp -a yarn.lock /tmp/yarn.lock
|
|
|
|
# build rpm
|
|
make -f fedora/Makefile srpm outdir=/root/rpmbuild/SRPMS
|
|
rpmbuild -rb /root/rpmbuild/SRPMS/jellyfin-*.src.rpm
|
|
|
|
# move the artifacts
|
|
mv /root/rpmbuild/RPMS/noarch/jellyfin-*.rpm /root/rpmbuild/SRPMS/jellyfin-*.src.rpm ${ARTIFACT_DIR}
|
|
|
|
if [[ ${IS_DOCKER} == YES ]]; then
|
|
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
|
fi
|
|
|
|
rm -f fedora/jellyfin*.tar.gz
|
|
cp -a /tmp/yarn.lock yarn.lock
|
|
|
|
popd
|