Skip to content

Commit

Permalink
Merge pull request #42 from Unknoob/exclude-files-fix
Browse files Browse the repository at this point in the history
Exclude pattern fix
  • Loading branch information
mosesliao committed Feb 13, 2020
2 parents e522ef3 + 1e8a48f commit bd6d0d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/lizard/actions/lizard_action.rb
Expand Up @@ -41,7 +41,7 @@ def self.forming_command(lizard_command, params)
command << "-L #{params[:length]}" if params[:length]
command << "-a #{params[:arguments]}" if params[:arguments]
command << "-i #{params[:number]}" if params[:number]
command << params[:exclude].split(",").map { |x| "-x #{x.strip}" }.join(" ").to_s if params[:exclude]
command << params[:exclude].split(",").map { |x| "-x \"#{x.strip}\"" }.join(" ").to_s if params[:exclude]
command << "-t #{params[:working_threads]}" if params[:working_threads]
command << "-E #{params[:extensions]}" if params[:extensions]
command << "-s #{params[:sorting]}" if params[:sorting]
Expand Down
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/lizard/version.rb
@@ -1,6 +1,6 @@
module Fastlane
module Lizard
VERSION = "1.3.0"
VERSION = "1.3.1"
CLI_VERSION = "1.14.10"
end
end

0 comments on commit bd6d0d8

Please sign in to comment.