Skip to content

Commit

Permalink
Make setup-intellij.sh work again.
Browse files Browse the repository at this point in the history
Somewhat. The generated IntelliJ project is still somewhat broken and you need to manually exclude a few directories to use it and there is a mystical error about a missing method on truth.MapSubject, but at least now it fails in a less spectacular way.

Fixes bazelbuild#796.

--
MOS_MIGRATED_REVID=112458948
  • Loading branch information
lberki committed Jan 19, 2016
1 parent d55d7af commit 6462d87
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions scripts/get_all_bazel_paths.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,7 @@ function query() {
}

# Compile bazel
[ -f "output/bazel" ] || ./compile.sh tools,compile >&2 || exit $?
([ -f "tools/jdk/JavaBuilder_deploy.jar" ] \
&& [ -f "tools/jdk/ijar" ] \
&& [ -f "tools/jdk/SingleJar_deploy.jar" ] \
&& [ -f "tools/jdk/GenClass_deploy.jar" ]) \
|| ./compile.sh tools,init output/bazel >&2 \
|| exit $?
[ -f "output/bazel" ] || ./compile.sh compile >&2 || exit $?

# Build almost everything.
# //third_party/ijar/test/... is disabled due to #273.
Expand Down

0 comments on commit 6462d87

Please sign in to comment.