#!/bin/sh if [ $# != 2 ]; then echo "Usage: $0 " >&2 exit 1 fi DATE=`git -C $1 log -1 --format=%cd --date=format-local:'%m%d%H%M.%S'` if [ $? != 0 ]; then echo "Non-git builds deprecated" >&2 exit 1 fi TSTAMP=$2/.tstamp if ! touch -t "$DATE" $TSTAMP 2>/dev/null; then echo "touch doesnt support -t, build may be incomplete" >&2 if [ ! -f "$TSTAMP" ]; then touch $TSTAMP fi fi echo $TSTAMP