summaryrefslogtreecommitdiffstats
path: root/scripts/makeupdates
Commit message (Collapse)AuthorAgeFilesLines
* Correct makeupdates script to work with deleted files.Joel Granados Moreno2009-10-021-7/+17
| | | | | | | | | | | This patch avoids a traceback when trying to copy a deleted file. * scripts/makeupdates (doGitDiff): used 'git diff --name-status tag' to get the list of changed files. (pruneFile, isysChanged): Adjust for file name parsing. We should stop looking for the '|' character and we should analyze the first character which contains the status of the file with respect to tag. For now we only skip the deleted files.
* Initialize the opts variable.Joel Granados Moreno2009-09-171-0/+1
| | | | | * scripts/makeupdates : Prevent a trace back caused by trying to use an uninitialized opts var.
* Add the help messages for the new options of makeupdates script.Joel Granados Moreno2009-09-171-0/+2
| | | | * scripts/makeupdates (usage): Add help messages for --tag and --offset.
* No longer use /usr/bin/env (#521337).Chris Lumens2009-09-101-1/+1
|
* Skip all Makefiles and the liveinst subdirectory in 'make updates'David Cantrell2009-09-041-2/+3
|
* Allow creation of an updates image from a tag offset.Joel Granados Moreno2009-08-191-3/+39
| | | | | | * scripts/makeupdates (getArchiveTagOffset): New function to calculate the tag based on an offset. (main): Add the offset option to the arguments.
* Add support for specifying a tag to makeupdates.David Lehman2009-08-171-3/+7
|
* Include changed files from the top level in the updates.David Lehman2009-08-171-0/+3
|
* Add scripts/makeupdates to generate updates.img files.David Cantrell2009-07-221-0/+212
Move the contents of the 'make updates' target to scripts/makeupdates. Make the recompilation of the _isys module be conditional (if you want to do that, either run 'make updates' as you have been or pass -c to scripts/makeupdates). Running makeupdates without -c will generate an updates.img with just the changed Python files.