aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'rsync-gen.sh')
-rwxr-xr-xrsync-gen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsync-gen.sh b/rsync-gen.sh
index 1335dab..82e72b9 100755
--- a/rsync-gen.sh
+++ b/rsync-gen.sh
@@ -60,14 +60,14 @@ RSYNC_GIT_EXCLUDE="--include core/ --include '*.old' --cvs-exclude --exclude=.gi
[[ -d ${LOGDIR} ]] || mkdir ${LOGDIR}
[[ -d ${BASE}/tmp ]] || mkdir ${BASE}/tmp
TIMESLOG="${LOGDIR}/rsync-gen-times.log"
-for atomic_rsync in `which atomic-rsync 2>/dev/null` /usr/share/rsync/atomic-rsync MISSING ; do
+for atomic_rsync in `command -v atomic-rsync 2>/dev/null` /usr/share/rsync/atomic-rsync MISSING ; do
[ -x $atomic_rsync ] && break
done
if [ "$atomic_rsync" == "MISSING" ]; then
echo "$0: Cannot do final atomic rsync into place, atomic-rsync tool is missing"
exit 1
fi
-for gemato in `which gemato 2>/dev/null` /usr/local/bin/gemato/bin/gemato MISSING ; do
+for gemato in `command -v gemato 2>/dev/null` /usr/local/bin/gemato/bin/gemato MISSING ; do
[ -x $gemato ] && break
done
if [ "$gemato " == "MISSING" ]; then