Commit ef6965dffbffd538ed0c9031017be2e359fbabcf

Authored by Jacob Vosmaer
1 parent d63b666b

GNU find has no -mnewer

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
release.sh
... ... @@ -29,7 +29,7 @@ if !(OMNIBUS_APPEND_TIMESTAMP=0 bin/omnibus build project ${PROJECT}); then
29 29 error_exit 'build failed'
30 30 fi
31 31  
32   -release_package=$(find pkg/ -mnewer build.txt -type f -not -name '*.json')
  32 +release_package=$(find pkg/ -newer build.txt -type f -not -name '*.json')
33 33 if [[ -z ${release_package} ]]; then
34 34 error_exit 'could not find the release package'
35 35 fi
... ...