Skip to content

Commit

Permalink
Do not remove signature of all files when cleaning the cache
Browse files Browse the repository at this point in the history
  • Loading branch information
gaow committed Feb 10, 2017
1 parent 1702f52 commit 6955616
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dsc/dsc_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def remove_obsolete_db(fid, additional_files = []):
if len(to_remove):
cmd_remove(dotdict({"tracked": False, "untracked": False,
"targets": to_remove, "__dryrun__": False,
"__confirm__": True, "signature": True, "verbosity": 0}), [])
"__confirm__": True, "signature": False, "verbosity": 0}), [])


def build_config_db(input_files, io_db, map_db, conf_db, vanilla = False):
Expand Down
2 changes: 1 addition & 1 deletion dsc/workhorse.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def remove(dsc_jobs, dsc_data, steps, db, force, debug):
else:
cmd_remove(dotdict({"tracked": False, "untracked": False if not force else true,
"targets": to_remove, "__dryrun__": False,
"__confirm__": True, "signature": True, "verbosity": env.verbosity}), [])
"__confirm__": True, "signature": False, "verbosity": env.verbosity}), [])


def execute(args):
Expand Down

0 comments on commit 6955616

Please sign in to comment.