Skip to content

Commit

Permalink
Added missing module to fix --list-profiles not working
Browse files Browse the repository at this point in the history
  • Loading branch information
ldionmarcil committed Apr 3, 2024
1 parent d2e51d7 commit 08be53b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autochrome.rb
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def parse_options(arg_list)
end

opts.on_tail("--list-themes", "List included themes") do
pathglob = File.join(ProfileBuilder::BuiltinThemeDirectory, "*.crx")
pathglob = File.join(AutoChrome::ProfileBuilder::BuiltinThemeDirectory, "*.crx")
themes = Dir[pathglob].select {|f| File.file?(f)}.map do |f|
File.basename(f).gsub("\.crx", "")
end
Expand Down

0 comments on commit 08be53b

Please sign in to comment.