Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

download_strategy.ry: Fix CVSDownloadStrategy #8873

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Library/Homebrew/download_strategy.rb
Expand Up @@ -412,7 +412,7 @@ def fetch
end

def stage
FileUtils.cp_r Dir[@co+"*"], Dir.pwd
FileUtils.cp_r Dir[@co+"{.}"], Dir.pwd

require 'find'
Find.find(Dir.pwd) do |path|
Expand Down