mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 05:25:50 +03:00
19 lines
334 B
Bash
Executable file
19 lines
334 B
Bash
Executable file
#!/bin/bash
|
|
# Copyright (C) 2017 Marco Trevisan
|
|
|
|
set -xe
|
|
|
|
TRAVIS_BUILD_STEP="$1"
|
|
THIS_PATH=$(dirname $0)
|
|
|
|
if [ -z "$TRAVIS_BUILD_STEP" ]; then
|
|
echo "No travis build step defined"
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$BUILD_TYPE" == "debian" ]; then
|
|
admin/linux/debian/travis-build.sh "$@"
|
|
else
|
|
echo 'No $BUILD_TYPE defined'
|
|
exit 1
|
|
fi
|