Skip to content
This repository has been archived by the owner on Aug 30, 2019. It is now read-only.

Fix bug in Windows rake command #323

Merged
merged 2 commits into from
Oct 12, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ task :windows do
["386", "amd64"].each do |arch|
case os
when "windows"
set_env = "set \"GOOS=windows\" && set \"GOARCH=#{arch}\""
set_env = "set \"GOOS=windows\" && set \"GOARCH=#{arch}\" &&"
else
set_env = "GOOS=windows GOARCH=#{arch}"
end
Expand Down