Skip to content

Commit ec70afe

Browse files
committed
fix pathing for docker
1 parent fa5bf1f commit ec70afe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/docker.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
require 'open-uri'
66

77
url = @config['docker_url']
8-
path = '/usr/local/sbin/docker'
8+
path = "#{@config['paths']['mount']}/usr/local/sbin/docker"
99

1010
if url
11+
puts "Downloading #{url} to #{path}"
1112
File.open(path, 'wb') do |fh|
1213
open(url, 'rb') { |request| fh.write request.read }
1314
end

0 commit comments

Comments
 (0)