0
votes

"sencha generate app MyApp MyApp" is completing without any error . But Certain folders are missing in the generated app. My MyApp directory has

sencha, app, resources

but folders like,

build, packages, touch

have not been generated.. What could've gone wrong..? It used to work well till a few days back.. Please help..

1
Did you update the SDK without updating the Cmd or the other way round?Chris
No. i didn't update anything. I didn't use it for a week or so. When i typed that command, it's not working now..! I tried deleting the whole touch-2.3.0 folder and unzipped again.. Still no hope..George Tucker

1 Answers

0
votes

It sounds like you didn't switch into the Sencha SDK folder to create your project.

You can either create your project from another directory like this:

sencha -sdk /path/to/sdk generate app MyApp /path/to/MyApp

Or you switch into the SDK path and do it like that:

cd /path/to/SDK
sencha generate app MyApp /path/to/MyApp

Hope that helps?