Sasikanth
Sasikanth

Reputation: 3043

publish-for-arch issues in meteor

I've created package and published it, It is just a simple wrapper of "phantom"

I deployed it using

sudo meteor publih --create

then added it to my app

$> meteor show sasi513:[email protected]
Version 1.0.0 : phantom node Package wrapper
      Architectures: os.linux.x86_32+web.browser+web.cordova


Maintained by sasi513.

EDIT Then when I try to deploy it meteor deploy xxx.meteor.com

Errors prevented deploying:
While building the application:
error: Unable to download package builds for this architecture.

and I tried to publish-for-arch

sudo meteor publish-for-arch sasi513:[email protected]
sasi513:phantom: updating npm dependencies -- phantom...
Bundling build...
Creating package build...
Uploading build...
Publishing package build...
Error from package server
: Cannot override existing build [403]

What is wrong here?Anyone has idea about this

Upvotes: 0

Views: 215

Answers (1)

Bjorn
Bjorn

Reputation: 71950

The documentation says:

You need to run publish-for-arch from a different architecture to upload a different build.

Are you running the command on a different architecture? Or the same machine? Because running the command on the same machine wont work.[1] Based on your description, it sounds like you didn't try it from the other architecture you want to support.

[1] http://docs.meteor.com/#meteorpublishforarch

Upvotes: 1

Related Questions