Skip to content

Commit

Permalink
typo (#44)
Browse files Browse the repository at this point in the history
* Deprecated output fix

* typo

* fix
  • Loading branch information
BirmacherAkos authored and trapacska committed Aug 16, 2019
1 parent 5a15f8a commit 3e70c00
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -463,8 +463,9 @@ func exportAPK(signedAPKPaths []string, joinedAPKOutputPaths string) {

if err := tools.ExportEnvironmentWithEnvman("BITRISE_APK_PATH", joinedAPKOutputPaths); err != nil {
log.Warnf("Failed to export APK list (%s), error: %s", joinedAPKOutputPaths, err)
} else {
log.Donef("The Signed APK path is now available in the Environment Variable: BITRISE_APK_PATH (value: %s)", joinedAPKOutputPaths)
}
log.Donef("he Signed APK path is now available in the Environment Variable: BITRISE_APK_PATH (value: %s)", joinedAPKOutputPaths)
}

func exportAAB(signedAABPaths []string, joinedAABOutputPaths string) {
Expand All @@ -482,6 +483,7 @@ func exportAAB(signedAABPaths []string, joinedAABOutputPaths string) {

if err := tools.ExportEnvironmentWithEnvman("BITRISE_AAB_PATH", joinedAABOutputPaths); err != nil {
log.Warnf("Failed to export AAB list (%s), error: %s", joinedAABOutputPaths, err)
} else {
log.Donef("The Signed AAB path is now available in the Environment Variable: BITRISE_AAB_PATH (value: %s)", joinedAABOutputPaths)
}
log.Donef("he Signed AAB path is now available in the Environment Variable: BITRISE_AAB_PATH (value: %s)", joinedAABOutputPaths)
}

0 comments on commit 3e70c00

Please sign in to comment.