perl - dist zilla cannot release because of untracked git changes -
i'm using dist::zilla release module, not working. i'm using dist::zilla::plugin::git plugin , whenever dzil release
, won't let me release module because says have untracked changes. however, untracked changes new files dist::zilla has created release! here config file:
name = my::module author = name license = perl_5 copyright_holder = name copyright_year = 2014 version = 0.001 [nextrelease] [@git] [@basic] [podweaver] [testrelease] [confirmrelease] [uploadtocpan] [autoprereqs]
is in wrong order here? or supposed commit created files release? because thought supposed temporary. here output get:
[@git/check] branch master has untracked files: [@git/check] my-module-0.001.tar.gz [@git/check] my-module-0.001/changes [@git/check] my-module-0.001/license [@git/check] my-module-0.001/manifest [@git/check] my-module-0.001/meta.yml [@git/check] my-module-0.001/makefile.pl [@git/check] my-module-0.001/readme [@git/check] my-module-0.001/dist.ini [@git/check] my-module-0.001/lib/my/module.pm [@git/check] branch master has untracked files: [@git/check] my-module-0.001.tar.gz [@git/check] my-module-0.001/changes [@git/check] my-module-0.001/license [@git/check] my-module-0.001/manifest [@git/check] my-module-0.001/meta.yml [@git/check] my-module-0.001/makefile.pl [@git/check] my-module-0.001/readme [@git/check] my-module-0.001/dist.ini [@git/check] my-module-0.001/lib/my/module.pm @ /system/library/perl/extras/5.16/darwin-thread-multi-2level/moose/meta/method/delegation.pm line 110.
your repo should include .gitignore
similar 1 presented in dist-milla in order ignore content of release folder.
/my-module-* /.build !meta.json
Comments
Post a Comment