Skip to content

Commit 2bbdc74

Browse files
committed
Fix thor deprecation warning
1 parent 68a71b3 commit 2bbdc74

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88

99

10+
## [Unreleased]
11+
12+
### Fixed
13+
14+
- Thor deprecation error no longer shows on CLI failure
15+
16+
17+
1018
## [0.3.0] - 2020-06-30
1119

1220
## Added

lib/diffcrypt/cli.rb

+4
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ def encryptor
3838
def ensure_file_exists(path)
3939
abort('[ERROR] File does not exist') unless File.exist?(path)
4040
end
41+
42+
def self.exit_on_failure?
43+
true
44+
end
4145
end
4246
end
4347
end

0 commit comments

Comments
 (0)