You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Corrected output variable and filename of raw output log (#313)
* Updated messaging to indicate correct output variable and filename of raw output log
* Make sure to use variable everywhere
* Update export ipa path
* Fix discrepancies between archive log and ipa export log
s.logger.Warnf("Failed to export %s, error: %s", xcodebuildArchiveLogPathEnvKey, err)
666
+
s.logger.Warnf("Failed to export %s, error: %s", xcodebuildExportArchiveLogPathEnvKey, err)
665
667
} else {
666
668
s.logger.Donef("The xcodebuild -exportArchive log path is now available in the Environment Variable: %s (value: %s)", xcodebuildExportArchiveLogPathEnvKey, xcodebuildExportArchiveLogPath)
667
669
}
@@ -867,8 +869,8 @@ and use 'Export iOS and tvOS Xcode archive' step to export an App Clip.`, opts.S
s.logger.Warnf(`You can find the last couple of lines of Xcode's build log above, but the full log will be also available in the raw-xcodebuild-output.log
871
-
The log file will be stored in $BITRISE_DEPLOY_DIR, and its full path will be available in the $BITRISE_XCODE_RAW_RESULT_TEXT_PATH environment variable.`)
872
+
s.logger.Warnf(fmt.Sprintf(`You can find the last couple of lines of Xcode's build log above, but the full log will be also available in the %s
873
+
The log file will be stored in $BITRISE_DEPLOY_DIR, and its full path will be available in the $%s environment variable.`, xcodebuildArchiveLogFilename, xcodebuildArchiveLogPathEnvKey))
872
874
}
873
875
iferr!=nil {
874
876
returnout, fmt.Errorf("failed to archive the project: %w", err)
@@ -1019,9 +1021,9 @@ func (s XcodebuildArchiver) xcodeIPAExport(opts xcodeIPAExportOpts) (xcodeIPAExp
1019
1021
out.XcodebuildExportArchiveLog=xcodebuildLog
1020
1022
ifexportErr!=nil {
1021
1023
ifuseXCPretty {
1022
-
s.logger.Warnf(`If you can't find the reason of the error in the log, please check the raw-xcodebuild-output.log
1023
-
The log file is stored in $BITRISE_DEPLOY_DIR, and its full path
1024
-
is available in the $BITRISE_XCODE_RAW_RESULT_TEXT_PATH environment variable`)
1024
+
s.logger.Warnf(fmt.Sprintf(`If you can't find the reason of the error in the log, please check the %s
1025
+
The log file will be stored in $BITRISE_DEPLOY_DIR, and its full path
1026
+
will be available in the $%s environment variable`, xcodebuildExportArchiveLogFilename, xcodebuildExportArchiveLogPathEnvKey))
0 commit comments