ongaeshi / milkode

Source code search engine of line-oriented written by Ruby
http://milkode.ongaeshi.me
Other
147 stars 29 forks source link

Windows環境で特定のディレクトリを探索したときにエラーが発生することがある #86

Closed ongaeshi closed 5 years ago

ongaeshi commented 5 years ago

以下のようにパッチを当ててスキップするとよさそう。

milkode-1.8.9\lib\milkode\database>
Comparing files updater.rb.org and UPDATER.RB
***** updater.rb.org
  216:          when "directory"
  217:            searchDirectory(dirname, packname, next_path, depth + 1)
  218:          when "file"
***** UPDATER.RB
  216:          when "directory"
  217:            begin
  218:              searchDirectory(dirname, packname, next_path, depth + 1)
  219:            rescue
  220:              alert("warning", "Failed to searchDirectory - #{fpath}")
  221:            end
  222:          when "file"
*****