Skip to content

Commit

Permalink
Fix resetting of show_env_vars_in_log and always_out_of_date valu…
Browse files Browse the repository at this point in the history
…es in .xcodeproj
  • Loading branch information
alexandre-pod committed Dec 5, 2023
1 parent 1941b73 commit 7db4fb3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/spinjector/project_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,13 @@ def update_script_in_target(existing_phase, script_configuration, target)
# gets set to '0' if the user has explicitly disabled this.
if script_configuration.show_env_vars_in_log == '0'
existing_phase.show_env_vars_in_log = script_configuration.show_env_vars_in_log
else
existing_phase.show_env_vars_in_log = nil
end
if script_configuration.always_out_of_date == '1'
existing_phase.always_out_of_date = script_configuration.always_out_of_date
else
existing_phase.always_out_of_date = nil
end
end

Expand Down

0 comments on commit 7db4fb3

Please sign in to comment.