Skip to content

Commit

Permalink
Fix the source asset folder of android
Browse files Browse the repository at this point in the history
  • Loading branch information
John Bryan Sazon committed Apr 24, 2018
1 parent 22c6caa commit 2ff8fc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nexus/nexus_upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ func (n *Nexus) NexusUploadAndroidAssets(apk *parser.AndroidAPK, dir string) ([]
return assets, err
}
// upload assets
uri, err := n.NexusUpload(NexusComponent{"ios_assets/version.json", "version.json", dir})
uri, err := n.NexusUpload(NexusComponent{"android_assets/version.json", "version.json", dir})
if err != nil {
return assets, err
}
assets = append(assets, uri)
uri, err = n.NexusUpload(NexusComponent{"ios_assets/index.html", apkIndexHTMLSitePath, dir})
uri, err = n.NexusUpload(NexusComponent{"android_assets/index.html", apkIndexHTMLSitePath, dir})
if err != nil {
return assets, err
}
Expand Down

0 comments on commit 2ff8fc2

Please sign in to comment.