summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_fdroid_build_apps.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/reproducible_fdroid_build_apps.sh')
-rwxr-xr-xbin/reproducible_fdroid_build_apps.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/reproducible_fdroid_build_apps.sh b/bin/reproducible_fdroid_build_apps.sh
index c85219d7..36d8482e 100755
--- a/bin/reproducible_fdroid_build_apps.sh
+++ b/bin/reproducible_fdroid_build_apps.sh
@@ -17,8 +17,9 @@ common_init "$@"
# define and clean work space on the machine actually running the
# build. jenkins.debian.net does not use Jenkins slaves. Instead
# /srv/jenkins/bin/jenkins_master_wrapper.sh runs this script on the
-# slave using a directl call to ssh.
-export WORKSPACE=$BASE/fdroid-build
+# slave using a directly call to ssh, so this script has to do all
+# of the workspace setup.
+export WORKSPACE=$BASE/`basename $0 | sed 's,\.sh,,'`
if [ -e $WORKSPACE/.git ]; then
# reuse the git repo if possible, to keep all the setup in fdroiddata/
cd $WORKSPACE
@@ -30,7 +31,7 @@ if [ -e $WORKSPACE/.git ]; then
git clean -fdx
else
rm -rf $WORKSPACE
- git clone https://gitlab.com/eighthave/fdroidserver-for-jenkins.debian.net.git $WORKSPACE
+ git clone https://gitlab.com/eighthave/fdroidserver-for-jenkins.debian.net $WORKSPACE
cd $WORKSPACE
fi