1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-02 09:10:11 +02:00

mark manually sanitized input so bandit doesn't complain

This commit is contained in:
Hans-Christoph Steiner 2018-08-29 17:20:01 +02:00
parent 2edc68d6cd
commit 3e1d313b7c

View File

@ -220,7 +220,7 @@ def build_server(app, build, vcs, build_dir, output_dir, log_dir, force):
if options.notarball:
cmdline += ' --no-tarball'
cmdline += " %s:%s" % (app.id, build.versionCode)
chan.exec_command('bash --login -c "' + cmdline + '"')
chan.exec_command('bash --login -c "' + cmdline + '"') # nosec B601 inputs are sanitized
# Fetch build process output ...
try: