All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scalajs-cli_2.11.0.6.9.source-code.scalajsc Maven / Gradle / Ivy

There is a newer version: 1.0.0-M3
Show newest version
#! /bin/sh

SCALA_BIN_VER="@SCALA_BIN_VER@"
SCALAJS_VER="@SCALAJS_VER@"
SCALA_VER=$(scalac -version 2>&1 | grep -o '[0-9]\.[0-9][0-9]\.[0-9]')

if [ "$(echo $SCALA_VER | cut -b 1-4)" != "$SCALA_BIN_VER" ]; then
    echo "This bundle of Scala.js CLI is for $SCALA_BIN_VER. Your scala version is $SCALA_VER!" >&2
    exit 1
fi

BASE="$(dirname $0)/.."
PLUGIN="$BASE/lib/scalajs-compiler_$SCALA_VER-$SCALAJS_VER.jar"
JSLIB="$BASE/lib/scalajs-library_$SCALA_BIN_VER-$SCALAJS_VER.jar"

scalac -classpath "$JSLIB" "-Xplugin:$PLUGIN" "$@"




© 2015 - 2025 Weber Informatics LLC | Privacy Policy