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 8dcce4f commit 693c470Copy full SHA for 693c470
bin/common
@@ -123,7 +123,7 @@ function check_jar {
123
# check_jar "name" "path/to/package.jar" "sources/dir" 'lambda to exec on failure'
124
local new_files="$(find "$DOTTY_ROOT/$3" \( -iname "*.scala" -o -iname "*.java" \) -newer "$2")"
125
# If the find failed, or if it found new files...
126
- if [ "$?" -ne 0 ] || [! -z "$new_files" ]; then
+ if [ "$?" -ne 0 ] || [ ! -z "$new_files" ]; then
127
printf "New files detected in $1, rebuilding..."
128
rm "$2"
129
eval "$4"
0 commit comments