diff options
| author | Takashi Kokubun <takashikkbn@gmail.com> | 2023-07-21 21:07:04 -0700 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2023-07-21 21:07:04 -0700 |
| commit | dd04def10f22296c9a98b4d796c100b9ad4e2388 (patch) | |
| tree | 9033abf1cf64f2178d9cb5cb2d0ca3e6a0dd9e76 /tool | |
| parent | 7cecd15587431e84088c62294bfbba134bfef173 (diff) | |
Try to fix NoMethodError on update-deps
Diffstat (limited to 'tool')
| -rwxr-xr-x | tool/update-deps | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/update-deps b/tool/update-deps index 86e359c0d0..c79a8a61c5 100755 --- a/tool/update-deps +++ b/tool/update-deps @@ -480,7 +480,7 @@ def compare_deps(make_deps, cc_deps, out=$stdout) } } - makefiles.keys.sort.each {|makefile| + makefiles.keys.compact.sort.each {|makefile| cc_lines = cc_lines_hash[makefile] || Hash.new(false) make_lines = make_lines_hash[makefile] || Hash.new(false) content = begin |
