Previously, I have run the about utilities like this:
genabout.py:
- Populated the values in my about_file column in my input .csv to be the codebase path name prefixed by /about_files/
- Created a directory in my project with the project name. For example:
/Users/dclark1330/my_workspace/the_project_name/
- Declared the output_path in my genabout.py command to include the full path with that project name.
- genabout.py then creates an /about_files/ directory inside that project and puts all the output in there.
genattrib.py:
Run that using a filter file (note that the about_file column paths all start with "/about_files/") and with the input_path specified as /Users/dclark1330/my_workspace/the_project_name/ . That works.
but, if I compress /Users/dclark1330/my_workspace/the_project_name/ to
/Users/dclark1330/my_workspace/the_project_name.zip
and then run genattrib.py using that as input, it does not like it, because my filter .csv file doesn't know about "the_project_name".
So I cannot run this last option (genattrib from a zipped archive) without making some changes.
If this does not make sense, let me know and I'll create a concrete case using our e2fsprogs example.
Previously, I have run the about utilities like this:
genabout.py:
/Users/dclark1330/my_workspace/the_project_name/
genattrib.py:
Run that using a filter file (note that the about_file column paths all start with "/about_files/") and with the input_path specified as /Users/dclark1330/my_workspace/the_project_name/ . That works.
but, if I compress /Users/dclark1330/my_workspace/the_project_name/ to
/Users/dclark1330/my_workspace/the_project_name.zip
and then run genattrib.py using that as input, it does not like it, because my filter .csv file doesn't know about "the_project_name".
So I cannot run this last option (genattrib from a zipped archive) without making some changes.
If this does not make sense, let me know and I'll create a concrete case using our e2fsprogs example.