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 b662003 + 6735820 commit f1bb590Copy full SHA for f1bb590
bin/common
@@ -13,9 +13,9 @@ shift # Mutates $@ by deleting the first element ($1)
13
version="$ROOT/dist-bootstrapped/target/pack/VERSION"
14
15
# Create the target if absent or if file changed in ROOT/compiler
16
-new_files="$(find "$ROOT/compiler" \( -iname "*.scala" -o -iname "*.java" \) -newer "$version" >& /dev/null)"
+new_files="$(find "$ROOT/compiler" \( -iname "*.scala" -o -iname "*.java" \) -newer "$version" 2> /dev/null)"
17
18
-if [ ! -f "$target" ] || [ ! -z "$new_files" ]; then
+if [ ! -f "$version" ] || [ ! -z "$new_files" ]; then
19
echo "Building Dotty..."
20
sbt "dist-bootstrapped/pack"
21
fi
0 commit comments