Differences From:
File
src/checkin.c
part of check-in
[c9fdb846fb]
- Add the "help" command and the "clean" command. More work is needed
on the text for various help messages.
by
drh on
2007-08-18 02:45:47.
[view]
To:
File
src/checkin.c
part of check-in
[95e17f4e3f]
- Generate the "manifest.uuid" file containing the SHA1 hash of the "manifest"
file whenever the manifest is generated. Makefiles can used the
"manifest.uuid" to insert the version number into the executable.
by
drh on
2007-08-25 19:31:31.
[view]
@@ -153,9 +153,9 @@
blob_zero(&path);
vfile_scan(0, &path);
db_prepare(&q,
"SELECT x FROM sfile"
- " WHERE x NOT IN ('manifest','_FOSSIL_')"
+ " WHERE x NOT IN ('manifest','manifest.uuid','_FOSSIL_')"
" ORDER BY 1");
while( db_step(&q)==SQLITE_ROW ){
printf("%s\n", db_column_text(&q, 0));
}
@@ -178,9 +178,9 @@
blob_zero(&path);
vfile_scan(0, &path);
db_prepare(&q,
"SELECT %Q || x FROM sfile"
- " WHERE x NOT IN ('manifest','_FOSSIL_')"
+ " WHERE x NOT IN ('manifest','manifest.uuid','_FOSSIL_')"
" ORDER BY 1", g.zLocalRoot);
while( db_step(&q)==SQLITE_ROW ){
unlink(db_column_text(&q, 0));
}