summaryrefslogtreecommitdiffstats
path: root/bin/chkmanifest
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2015-04-21 14:58:43 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2015-04-21 14:58:43 (GMT)
commit65b3bc2a937337239ceede5e39261c6b2ba4dc69 (patch)
treec6139980f34978fefe3fad3c756d4916f4d7d389 /bin/chkmanifest
parent3f36df51d845a93e94fff264fa22ad60a71db754 (diff)
downloadhdf5-65b3bc2a937337239ceede5e39261c6b2ba4dc69.zip
hdf5-65b3bc2a937337239ceede5e39261c6b2ba4dc69.tar.gz
hdf5-65b3bc2a937337239ceede5e39261c6b2ba4dc69.tar.bz2
[svn-r26861] Bring revisions #26401 - #26459 from trunk to revise_chunks.
h5committested.
Diffstat (limited to 'bin/chkmanifest')
-rwxr-xr-xbin/chkmanifest12
1 files changed, 7 insertions, 5 deletions
diff --git a/bin/chkmanifest b/bin/chkmanifest
index 8abd8ea..646f815 100755
--- a/bin/chkmanifest
+++ b/bin/chkmanifest
@@ -79,12 +79,14 @@ done
#
# First get a list of all the pending files with svn stat and
# check those.
-svn_stat="$(svn stat -q)"
+svn_stat=`svn stat -q`
for file in $svn_stat; do
+
# Newly added files are not listed by svn ls, which
- # we check below..
- # The line listing them starts with 'A'.
- letter="$(echo $file | head -c 1)"
+ # we check later.
+
+ # The line listing new files starts with 'A'.
+ letter=`echo $file | head -c 1`
if [ "$letter" = "A" ]; then
# Convert the seven Subversion status columns to './' so it matches
# the manifest file name.
@@ -106,7 +108,7 @@ done
# Next check svn ls, which gets a list of all files that are
# checked in.
-svn_ls="$(svn ls -R)"
+svn_ls=`svn ls -R`
for file in $svn_ls; do
path="./${file}"
# Ignore directories