Skip to content

Commit 0ddd0a9

Browse files
authored
Remove unnecessary check
removes unnecessary check for a blank string DBS env var in release:do. That will now be caught as an error elsewhere
1 parent 18ee3b9 commit 0ddd0a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ end
9696

9797
desc "Releasing AR-JDBC gems (use NOOP=true to disable gem pushing)"
9898
task 'release:do' do
99-
if !ENV["DBS"] || ENV["DBS"].strip.empty?
99+
if !ENV["DBS"]
100100
puts "you must explicitly provide a DBS env var when calling release:do. An empty one will not default to 'all' " \
101101
"for this command\n\n"
102102
invalid_dbs!

0 commit comments

Comments
 (0)