mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
mark manually sanitized input so bandit doesn't complain
This commit is contained in:
parent
2edc68d6cd
commit
3e1d313b7c
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue