Skip to content

Commit 30f4065

Browse files
committed
Make rake :zip separate task
1 parent 464054a commit 30f4065

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Rakefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ build = 'Overview'
66

77
task default: :build
88
task build: [:reset_build_directory, :compile_overviews]
9+
task travis: [:build, :zip]
910

1011
task :reset_build_directory do
1112
FileUtils.remove_entry_secure build if Dir.exist? build
@@ -23,7 +24,7 @@ task :compile_overviews do
2324
end
2425
end
2526

26-
task travis: [:build] do
27+
task :zip do
2728
system 'zip', '-r', "eve-overview-v#{File.read('VERSION').strip}.zip",
2829
build, 'README.md', 'LICENSE.txt', 'CHANGELOG.md', 'VERSION'
2930
end

0 commit comments

Comments
 (0)