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.
1 parent dfa3280 commit 2064440Copy full SHA for 2064440
bin/common
@@ -103,7 +103,7 @@ fi
103
function check_jar {
104
# Usage:
105
# check_jar "name" "path/to/package.jar" "sources/dir" 'lambda to exec on failure'
106
- 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")"
107
if [ ! -z "$new_files" ]; then
108
printf "New files detected in $1, rebuilding..."
109
eval "$4"
0 commit comments