dockly 1.5.2 → 1.5.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/dockly/build_cache/docker.rb +1 -1
- data/lib/dockly/version.rb +1 -1
- metadata +1 -1
@@ -27,7 +27,7 @@ class Dockly::BuildCache::Docker < Dockly::BuildCache::Base
|
|
27
27
|
debug "inserting to #{output_directory}"
|
28
28
|
path = File.expand_path(cache.path)
|
29
29
|
path_parent = File.dirname(path)
|
30
|
-
tar_flags = keep_old_files ? '-
|
30
|
+
tar_flags = keep_old_files ? '-xkf' : 'xf'
|
31
31
|
container = ::Docker::Container.create(
|
32
32
|
'Image' => image.id,
|
33
33
|
'Cmd' => ['/bin/bash', '-lc', [
|
data/lib/dockly/version.rb
CHANGED