mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
Fix typo in build.py
encoutered -> encountered
This commit is contained in:
parent
3f8c3cdf18
commit
af1c5d4e5d
1 changed files with 3 additions and 3 deletions
|
@ -1161,7 +1161,7 @@ def main():
|
||||||
logging.error("VCS error while building app %s: %s" % (
|
logging.error("VCS error while building app %s: %s" % (
|
||||||
appid, reason))
|
appid, reason))
|
||||||
if options.stop:
|
if options.stop:
|
||||||
logging.debug("Error encoutered, stopping by user request.")
|
logging.debug("Error encountered, stopping by user request.")
|
||||||
common.force_exit(1)
|
common.force_exit(1)
|
||||||
failed_builds.append((appid, build.versionCode))
|
failed_builds.append((appid, build.versionCode))
|
||||||
common.deploy_build_log_with_rsync(
|
common.deploy_build_log_with_rsync(
|
||||||
|
@ -1182,7 +1182,7 @@ def main():
|
||||||
f.write(str(e))
|
f.write(str(e))
|
||||||
logging.error("Could not build app %s: %s" % (appid, e))
|
logging.error("Could not build app %s: %s" % (appid, e))
|
||||||
if options.stop:
|
if options.stop:
|
||||||
logging.debug("Error encoutered, stopping by user request.")
|
logging.debug("Error encountered, stopping by user request.")
|
||||||
common.force_exit(1)
|
common.force_exit(1)
|
||||||
failed_builds.append((appid, build.versionCode))
|
failed_builds.append((appid, build.versionCode))
|
||||||
common.deploy_build_log_with_rsync(
|
common.deploy_build_log_with_rsync(
|
||||||
|
@ -1195,7 +1195,7 @@ def main():
|
||||||
logging.error("Could not build app %s due to unknown error: %s" % (
|
logging.error("Could not build app %s due to unknown error: %s" % (
|
||||||
appid, traceback.format_exc()))
|
appid, traceback.format_exc()))
|
||||||
if options.stop:
|
if options.stop:
|
||||||
logging.debug("Error encoutered, stopping by user request.")
|
logging.debug("Error encountered, stopping by user request.")
|
||||||
common.force_exit(1)
|
common.force_exit(1)
|
||||||
failed_builds.append((appid, build.versionCode))
|
failed_builds.append((appid, build.versionCode))
|
||||||
common.deploy_build_log_with_rsync(
|
common.deploy_build_log_with_rsync(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue