We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1827b2f commit 8678e1dCopy full SHA for 8678e1d
rake_tasks/unified_release_tasks.rake
@@ -47,7 +47,9 @@ namespace :unified_release do
47
puts "Building #{gem} v#{@version} to #{output_dir}"
48
sh "cd #{CURRENT_PATH.join(gem)} " \
49
"&& gem build --silent -o #{gem}-#{@version}.gem && " \
50
- "mv *.gem #{CURRENT_PATH.join(output_dir)}"
+ "mv *.gem #{CURRENT_PATH.join(output_dir)} && " \
51
+ "chmod a+r #{CURRENT_PATH.join(output_dir)}/* && " \
52
+ "chmod a+w #{CURRENT_PATH.join(output_dir)}"
53
end
54
puts '-' * 80
55
0 commit comments