We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fe36073 + 2064440 commit cc21026Copy full SHA for cc21026
bin/common
@@ -102,7 +102,7 @@ fi
102
function check_jar {
103
# Usage:
104
# check_jar "name" "path/to/package.jar" "sources/dir" 'lambda to exec on failure'
105
- local new_files="$(find "$3" \( -iname "*.scala" -o -iname "*.java" \) -newer "$2")"
+ local new_files="$(find "$DOTTY_ROOT/$3" \( -iname "*.scala" -o -iname "*.java" \) -newer "$2")"
106
if [ ! -z "$new_files" ]; then
107
printf "New files detected in $1, rebuilding..."
108
eval "$4"
0 commit comments