dockly 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/dockly/build_cache.rb +1 -1
- data/lib/dockly/version.rb +1 -1
- metadata +1 -1
data/lib/dockly/build_cache.rb
CHANGED
@@ -57,7 +57,7 @@ class Dockly::BuildCache
|
|
57
57
|
ensure_present! :output_dir
|
58
58
|
if cache = pull_from_s3(version)
|
59
59
|
debug "inserting to #{output_dir}"
|
60
|
-
container = image.run("mkdir #{File.dirname(output_dir)}")
|
60
|
+
container = image.run("mkdir -p #{File.dirname(output_dir)}")
|
61
61
|
image_with_dir = container.tap { |c| c.wait }.commit
|
62
62
|
self.image = image_with_dir.insert_local(
|
63
63
|
'localPath' => cache.path,
|
data/lib/dockly/version.rb
CHANGED