summaryrefslogtreecommitdiff
path: root/src/intellij/setup.sh
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@gmail.com>2016-03-16 21:55:08 +0100
committerLukas Rytz <lukas.rytz@gmail.com>2016-03-21 11:51:50 +0100
commit5f5cc186cbedff6dc55993cb3b0dcfe36038efa1 (patch)
tree4ae24b81f24faa8f645e5a8d3732aef116c34c79 /src/intellij/setup.sh
parentafb14588edeb199ad5b6b2deedb55abe3c998503 (diff)
downloadscala-5f5cc186cbedff6dc55993cb3b0dcfe36038efa1.tar.gz
scala-5f5cc186cbedff6dc55993cb3b0dcfe36038efa1.tar.bz2
scala-5f5cc186cbedff6dc55993cb3b0dcfe36038efa1.zip
Update IntelliJ build for use with sbt
Diffstat (limited to 'src/intellij/setup.sh')
-rwxr-xr-xsrc/intellij/setup.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/intellij/setup.sh b/src/intellij/setup.sh
deleted file mode 100755
index 251f717829..0000000000
--- a/src/intellij/setup.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env bash
-#
-# Generates IntelliJ IDEA project files based on the checked-in samples.
-#
-
-set -e
-export SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
-echo "About to delete .ipr and .iml files and replace with the .SAMPLE files. Press enter to continue or CTRL-C to cancel."
-read
-
-for f in "$SCRIPT_DIR"/*.SAMPLE; do
- g=${f%.SAMPLE}
- cp $f $g
-done
-
-STARR_VERSION="`cat $SCRIPT_DIR/../../versions.properties | grep 'starr.version' | awk '{split($0,a,"="); print a[2]}'`"
-sed "s/#starr-version#/$STARR_VERSION/g" $SCRIPT_DIR/scala.ipr.SAMPLE > $SCRIPT_DIR/scala.ipr