if args.__dryrun__:
print("Would remove untracked directory {}".format(d))
else:
if get_response("Remove untracked directory {}".format(d)):
if os.path.isdir(d):
shutil.rmtree(d)
else:
After Change
if get_response("Remove {}".format(target), always_true = args.signature):
if os.path.isfile(target):
if args.signature:
FileTarget(target).remove("signature")
else:
FileTarget(target).remove("both")
else:
if os.path.abspath(target) != os.path.abspath("."):