summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authormvglasow <michael@vonglasow.com>2021-04-03 17:34:01 +0200
committerGitHub <noreply@github.com>2021-04-03 17:34:01 +0200
commit97fcb966b019223afee266b41bf7cff726cf0bbb (patch)
tree68a63dcbb9622bf2473fabad579aa92f9bba065a /.circleci
parent1effb2462fc787894308e0aafcbd7cc10e77390c (diff)
downloadnavit-97fcb966b019223afee266b41bf7cff726cf0bbb.tar.gz
Fix:ci:Fix fdroidserver download path (#1107)
Signed-off-by: mvglasow <michael -at- vonglasow.com> Co-authored-by: mvglasow <michael -at- vonglasow.com>
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 43ebaf025..e643305e6 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -138,7 +138,7 @@ jobs:
test -d build || mkdir build
test -d fdroidserver || mkdir fdroidserver
git ls-remote https://gitlab.com/fdroid/fdroidserver.git master
- curl --silent https://gitlab.com/fdroid/fdroidserver/repository/master/archive.tar.gz | tar -xz --directory=fdroidserver --strip-components=1
+ curl --silent https://gitlab.com/fdroid/fdroidserver/-/archive/master/fdroidserver-master.tar.gz | tar -xz --directory=fdroidserver --strip-components=1
export PATH="`pwd`/fdroidserver:$PATH"
export PYTHONPATH="$CI_PROJECT_DIR/fdroidserver:$CI_PROJECT_DIR/fdroidserver/examples"
export PYTHONUNBUFFERED=true