driusan / bug

Distributed bug tracking with the filesystem and hg or git
GNU General Public License v3.0
205 stars 7 forks source link

Cannot create bug #23

Closed hazcod closed 5 years ago

hazcod commented 5 years ago

Great project!

$ mkdir /tmp/issues
$ PMIT=/tmp/issues bug create --status new "Task status not updated after first task" --tag slave --priority high --milestone 1.0

bug error: mkdir
2019/03/06 09:43:09 mkdir /tmp/issues/issues/Task-status-not-updated-after-first-task: no such file or directory

Any idea? Just installed via go get

malisetti commented 5 years ago

PMIT is the directory path where issues directory can be found.

The following works.


$ PMIT=/tmp bug create --status new "Task status not updated after first task" --tag slave --priority high --milestone 1.0
``
hazcod commented 5 years ago

Indeed! Thanks.