Home > Software engineering >  On MacOS, launching Quasar-Framework/Capacitor dev command targeting Android or iOs fall back to pro
On MacOS, launching Quasar-Framework/Capacitor dev command targeting Android or iOs fall back to pro

Time:07-26

Using Quasar following commands fallback to prompt without any further actions. IDE is not launching as it should.

    quasar dev -m capacitor -T android

or

    quasar dev -m capacitor -T ios
    

Nothing, not even an error message. What is wrong? What shoud I do?

Edit : Command build works for Android and ios

    quasar build -m capacitor -T android

or

    quasar build -m capacitor -T ios
    

How do I make dev working ?

CodePudding user response:

I got same behavior when I copy my project from Windows to make some tests on iOS. So you have to give execution permision to /src-capacitor/node_module@capacitor/cli/bin/capacitor

    sudo chmod  x /src-capacitor/node_module@capacitor/cli/bin/capacitor

Hope it will you going further.

  • Related