On Fri, Sep 5, 2014 at 12:45 PM, Matt Day <[email protected]> wrote:
Is it possible to find the list of input files? > > I want to add a check that all of the tup input files are committed in > git... > > I don't think there is an easy way to just list the files that are used as inputs from commands, though you could probably pull the info from the database if you really wanted. Do you use the ".gitignore" directive in your Tupfiles? If so, it's pretty easy to see what files aren't committed in git - just do "git status", and anything that shows up as untracked needs to be committed. All of the files generated by the build system will automatically be ignored then, so they won't show up. If you're already doing that and I'm missing the reasoning behind your question, let me know and I can probably help you construct something to pull it from the db :) -Mike -- -- tup-users mailing list email: [email protected] unsubscribe: [email protected] options: http://groups.google.com/group/tup-users?hl=en --- You received this message because you are subscribed to the Google Groups "tup-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
