Skip to content

Commit 8678e1d

Browse files
committed
[CI] Chmod for assemble in task
1 parent 1827b2f commit 8678e1d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

rake_tasks/unified_release_tasks.rake

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ namespace :unified_release do
4747
puts "Building #{gem} v#{@version} to #{output_dir}"
4848
sh "cd #{CURRENT_PATH.join(gem)} " \
4949
"&& gem build --silent -o #{gem}-#{@version}.gem && " \
50-
"mv *.gem #{CURRENT_PATH.join(output_dir)}"
50+
"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)}"
5153
end
5254
puts '-' * 80
5355
end

0 commit comments

Comments
 (0)