mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-27 17:37:36 +03:00
17 lines
254 B
Bash
Executable file
17 lines
254 B
Bash
Executable file
#!/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
|