Skip to content

Commit

Permalink
minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Drazzilb08 committed Feb 18, 2024
1 parent 2045087 commit ee2f3f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/bash_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ def set_cmd_args(settings, bash_script_file, logger, script_name):
cmd.append(shlex.quote(str(data_dir)))

if include:
include = ",".join([f"'{i}'" for i in include])
include = ",".join([f"{i}" for i in include])
cmd.append('-i')
cmd.append(include)

if exclude:
exclude = ",".join([f"'{i}'" for i in exclude])
exclude = ",".join([f"{i}" for i in exclude])
cmd.append('-e')
cmd.append(exclude)

Expand Down

0 comments on commit ee2f3f8

Please sign in to comment.