|
@@ -91,7 +91,7 @@ class Archiver:
|
|
|
msg = ("'check --repair' is an experimental feature that might result in data loss." +
|
|
|
"\n" +
|
|
|
"Type 'YES' if you understand this and want to continue: ")
|
|
|
- if not yes(msg, false_msg="Aborting.",
|
|
|
+ if not yes(msg, false_msg="Aborting.", default_notty=False,
|
|
|
env_var_override='BORG_CHECK_I_KNOW_WHAT_I_AM_DOING', truish=('YES', )):
|
|
|
return EXIT_ERROR
|
|
|
if not args.archives_only:
|
|
@@ -335,7 +335,7 @@ class Archiver:
|
|
|
msg.append(format_archive(archive_info))
|
|
|
msg.append("Type 'YES' if you understand this and want to continue: ")
|
|
|
msg = '\n'.join(msg)
|
|
|
- if not yes(msg, false_msg="Aborting.",
|
|
|
+ if not yes(msg, false_msg="Aborting.", default_notty=False,
|
|
|
env_var_override='BORG_CHECK_I_KNOW_WHAT_I_AM_DOING', truish=('YES', )):
|
|
|
self.exit_code = EXIT_ERROR
|
|
|
return self.exit_code
|