Skip to content

Commit

Permalink
Merge pull request #48 from bitrise-io/fix-error-log
Browse files Browse the repository at this point in the history
[ACI-2766] Fix error logging
  • Loading branch information
imrekel authored Aug 26, 2024
2 parents ab1d1ec + cb648fa commit 2b0743b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/restoreXcodeDerivedDataFiles.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ var restoreXcodeDerivedDataFilesCmd = &cobra.Command{

tracker.LogRestoreFinished(time.Since(startT), err)
if cmdError != nil {
return fmt.Errorf("restore Xcode DerivedData from Bitrise Build Cache: %w", err)
return fmt.Errorf("restore Xcode DerivedData from Bitrise Build Cache: %w", cmdError)
}

logger.TInfof("✅ DerivedData restored from Bitrise Build Cache ")
Expand Down

0 comments on commit 2b0743b

Please sign in to comment.