diff options
Diffstat (limited to 'bin/snapshot')
-rwxr-xr-x | bin/snapshot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/snapshot b/bin/snapshot index 74a724b..d87dd3a 100755 --- a/bin/snapshot +++ b/bin/snapshot @@ -42,7 +42,7 @@ snapshot=yes if [ -d ${COMPARE}/previous ]; then if (diff -c ${COMPARE}/previous/MANIFEST ${COMPARE}/current/MANIFEST); then snapshot=no - for src in `cat ${COMPARE}/current/MANIFEST`; do + for src in `grep '^\.' ${COMPARE}/current/MANIFEST|expand|cut -f1`; do if (diff -I H5_VERS_RELEASE -I " released on " \ ${COMPARE}/previous/$src ${COMPARE}/current/$src); then else |