ubuntu-cli template tries to execute a non executable file
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Quickly |
Fix Committed
|
Undecided
|
Unassigned |
Bug Description
When creating a new project with ubuntu-cli template, a non executable file is placed inside "project/bin" and then it's executed, generating a the following traceback:
$ quickly create ubuntu-cli example
Creating project directory example
Crear un repositorio bzr y publicarlo
Lanzando su proyecto recién creado
Traceback (most recent call last):
File "/usr/share/
subprocess.
File "/usr/lib/
return Popen(*popenargs, **kwargs).wait()
File "/usr/lib/
errread, errwrite)
File "/usr/lib/
raise child_exception
OSError: [Errno 13] Permission denied
Error: la orden create ha fallado
Cancelando
Quickly 12.08.1 from repositories on a fully upgraded Ubuntu 12.10 Beta 2.
Related branches
- Didier Roche-Tolomelli: Approve
-
Diff: 1 lines (+0/-0)0 files modified
Changed in quickly: | |
assignee: | nobody → Sp00n1na70r (sp00n1na70r) |
Changed in quickly: | |
status: | New → In Progress |
Hi Raúl
you don't specify in your report which directory where you run the command
$ quickly create ubuntu-cli example
It may be a permission problem in the directory. You could try these commands to verify.
$ mkdir example bin/example
$ mkdir example/bin
$ echo gedit > example/bin/example
$ chmod u+x example/bin/example
$ ./example/