Skip to content

Commit bf95d60

Browse files
committed
Put the contents in the right place
Use a zip command that works (-d doesn't seem valid) The contents are a dist directory and should be up a level.
1 parent 26f32fb commit bf95d60

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

recipes/ui.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
curl -f -L -O '#{node[:consul][:base_url]}/#{install_version}.zip'
2727
echo '#{install_checksum} #{install_version}.zip' > sha256sums
2828
sha256sum -c --status sha256sums
29-
unzip -d "#{install_version}.zip"
29+
unzip "#{install_version}.zip"
30+
mv dist/* .
31+
rm -rf dist
3032
EOC
3133
end

0 commit comments

Comments
 (0)