Removed the resources folder and the test folder being referred in the task template.
Rationale:
We are not creating resources and test folder in type task. Which (I believe) is typically not required as well. So removed those files being referred from the templates build.boot.
Testing:
Installed the changes in my local by running boot build. And ran the below command,
boot -d boot/new new -t task -n new-task
Under new-task project, the build.boot doesn't have references for the above mentioned folders. Also I'm able to run boot --help without any error.
Fix:
Rationale:
resources
andtest
folder in typetask
. Which (I believe) is typically not required as well. So removed those files being referred from the templatesbuild.boot
.Testing:
Installed the changes in my local by running
boot build
. And ran the below command,boot -d boot/new new -t task -n new-task
Undernew-task
project, thebuild.boot
doesn't have references for the above mentioned folders. Also I'm able to runboot --help
without any error.