You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
266 B
17 lines
266 B
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Builds the DEB inside the Docker container
|
||
|
|
||
|
set -o errexit
|
||
|
set -o xtrace
|
||
|
|
||
|
# Move to source directory
|
||
|
pushd ${SOURCE_DIR}
|
||
|
|
||
|
# Build DEB
|
||
|
dpkg-buildpackage -us -uc
|
||
|
|
||
|
# Move the artifacts out
|
||
|
mkdir -p ${ARTIFACT_DIR}/deb
|
||
|
mv /jellyfin_* ${ARTIFACT_DIR}/deb/
|