You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue when configuring files to add. It will only ever add one file. I've successfully gitclone into a subdirectory folder build/package/, modified some files in the repo, then try to gitadd the updated files. gitadd config below:
During the grunt task it only adds one file (package.json). In the foreach loop of the command_add.js, updating files.src to files.org.src seems to fix the problem - all files will then be committed.
Not sure if it's a bug or a issue with my config.
The text was updated successfully, but these errors were encountered:
I tracked down this issue, which we had in our windows environment. Rather than using files.orig.src in the commands, I think we should use task.data.files.src. I am uncertain why, but files.src is always being truncated down to a single element. Pull Request Pending.
node v0.10.26
grunt-git 0.3.0-alpha
Issue when configuring files to add. It will only ever add one file. I've successfully gitclone into a subdirectory folder build/package/, modified some files in the repo, then try to gitadd the updated files. gitadd config below:
During the grunt task it only adds one file (package.json). In the foreach loop of the command_add.js, updating
files.src
tofiles.org.src
seems to fix the problem - all files will then be committed.Not sure if it's a bug or a issue with my config.
The text was updated successfully, but these errors were encountered: