Skip to content

Commit

Permalink
fix occurrences of scala version
Browse files Browse the repository at this point in the history
Fixes issue #748.
  • Loading branch information
jvierling committed Apr 24, 2020
1 parent b0c62fc commit da1e43b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/main/scala/gapt/utils/help.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import java.nio.file.{ Files, Paths }
*/
object help {
private val tarballPathBase = Paths.get( "apidocs" ).toAbsolutePath
private val devPathBase = Paths.get( "target", "scala-2.12", "unidoc" ).toAbsolutePath
private val devPathBase = Paths.get( "target", "scala-2.13", "unidoc" ).toAbsolutePath

private val websitePath = "https://logic.at/gapt/api/"

Expand Down
2 changes: 1 addition & 1 deletion include.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [[ -z "$java" ]]; then
exit 1
fi

for _jar in "$basedir/gapt-$gapt_version.jar" "$basedir/target/scala-2.12/root-assembly-$gapt_version.jar"; do
for _jar in "$basedir/gapt-$gapt_version.jar" "$basedir/target/scala-2.13/root-assembly-$gapt_version.jar"; do
if [[ -f "$_jar" ]]; then
gapt_jar="$_jar"
break
Expand Down

0 comments on commit da1e43b

Please sign in to comment.