We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68a71b3 commit 2bbdc74Copy full SHA for 2bbdc74
CHANGELOG.md
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
9
10
+## [Unreleased]
11
+
12
+### Fixed
13
14
+- Thor deprecation error no longer shows on CLI failure
15
16
17
18
## [0.3.0] - 2020-06-30
19
20
## Added
lib/diffcrypt/cli.rb
@@ -38,6 +38,10 @@ def encryptor
38
def ensure_file_exists(path)
39
abort('[ERROR] File does not exist') unless File.exist?(path)
40
end
41
42
+ def self.exit_on_failure?
43
+ true
44
+ end
45
46
47
0 commit comments