From: Ciaran Gultnieks Date: Wed, 9 Oct 2013 09:11:34 +0000 (+0100) Subject: Revert "Don't stop if srclib paths are hard-coded" X-Git-Tag: 0.1~375 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=42497533a520b3a53cc4d5f82673ce35004c5f91;p=fdroidserver.git Revert "Don't stop if srclib paths are hard-coded" This reverts commit 33a95637c029e3ac8bb6cfee6bbe273fcf818a33. --- diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 3e56dd10..2d107d87 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -37,7 +37,7 @@ def getvcs(vcstype, remote, local, sdk_path): return vcs_bzr(remote, local, sdk_path) if vcstype == 'srclib': if local != 'build/srclib/' + remote: - print "Warning: srclib paths are hard-coded!" + raise VCSException("Error: srclib paths are hard-coded!") return getsrclib(remote, 'build/srclib', sdk_path, raw=True) raise VCSException("Invalid vcs type " + vcstype)