mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-18 03:41:50 +03:00
18 lines
254 B
Bash
18 lines
254 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e -u
|
||
|
|
||
|
scriptdir=`dirname $0`
|
||
|
scriptdir=`cd "${scriptdir}" && pwd`
|
||
|
|
||
|
. "${scriptdir}/config.sh"
|
||
|
|
||
|
distribution="${1}"
|
||
|
shift
|
||
|
|
||
|
pushd /
|
||
|
"${scriptdir}/build.sh" "${distribution}" -S "$@"
|
||
|
|
||
|
"${scriptdir}/pbuilder.sh" "${distribution}" "$@"
|
||
|
popd
|