cowtech-lib 1.9.3.0 → 1.9.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/cowtech-lib.gemspec +1 -1
- data/lib/cowtech-lib/shell.rb +1 -1
- data/lib/cowtech-lib/version.rb +1 -1
- metadata +2 -2
data/cowtech-lib.gemspec
CHANGED
data/lib/cowtech-lib/shell.rb
CHANGED
|
@@ -232,7 +232,7 @@ module Cowtech
|
|
|
232
232
|
if args[:destination_is_directory] then
|
|
233
233
|
files = (args[:files] || []).force_array
|
|
234
234
|
dest = args[:dest]
|
|
235
|
-
dest += "/" if self.file_check?(dest, :directory) and dest !~ /\/$/
|
|
235
|
+
dest += "/" if self.file_check?(:file => dest, :tests => :directory) and dest !~ /\/$/
|
|
236
236
|
|
|
237
237
|
files.each do |file|
|
|
238
238
|
begin
|
data/lib/cowtech-lib/version.rb
CHANGED