Skip to content

Commit

Permalink
Remove log argument from sh action
Browse files Browse the repository at this point in the history
  • Loading branch information
testableapple committed Aug 13, 2024
1 parent e76cfc4 commit 0c7054e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def self.run(params)
benchmark_config[benchmark_key] = params[:branch_sizes]
File.write(sdk_size_path, JSON.pretty_generate(benchmark_config))
Dir.chdir(File.dirname(sdk_size_path)) do
if sh('git status -s', log: false).to_s.empty?
if sh('git status -s').to_s.empty?
UI.important('No changes in SDK sizes benchmarks.')
else
sh('git add -A')
Expand Down
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/stream_actions/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Fastlane
module StreamActions
VERSION = '0.3.54'
VERSION = '0.3.55'
end
end

0 comments on commit 0c7054e

Please sign in to comment.