diff options
Diffstat (limited to 'test-directories.sh')
-rwxr-xr-x | test-directories.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test-directories.sh b/test-directories.sh index 83c408f..1777e69 100755 --- a/test-directories.sh +++ b/test-directories.sh @@ -64,8 +64,12 @@ test_record_timestamp_in_repo() { test_time_to_update_when_timestamp_is_old() { cd $scriptDir - newtimestamp=$(date -d "now -1 hour" +%Y%m%d%H%M) - touch -t $newtimestamp "$(dot_git)/lastupdatetime" + if [[ $OSTYPE == darwin* ]];then + touch -A "-010000" "$(dot_git)/lastupdatetime" + else + newtimestamp=$(date -d "now -1 hour" +%Y%m%d%H%M) + touch -t $newtimestamp "$(dot_git)/lastupdatetime" + fi; assertTrue time_to_update } |