Skip to content

Commit adfac97

Browse files
committed
Merge branch 'master' of github.com:Kodowa/Light-Table-Playground
2 parents 37ead7c + 7bf84c8 commit adfac97

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

linux_deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
#!/usr/bin/env sh
1+
#!/usr/bin/env bash
22
# Check if lein is installed
33
lein version >/dev/null 2>&1 || { echo >&2 "Please install leiningen before running this script."; exit 1; }
44

55
echo "### Fetching binaries ###"
66
BITS=""
7-
if [ $(getconf LONG_BIT) == "32" ]; then BITS="64"; fi
7+
if [ $(getconf LONG_BIT) == "64" ]; then BITS="64"; fi
88
TARBALL=LightTableLinux$BITS.tar.gz
99
curl -O http://d35ac8ww5dfjyg.cloudfront.net/playground/bins/0.6.0/$TARBALL
1010
tar -xzf $TARBALL

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[org.clojure/clojurescript "0.0-2127"
99
:exclusions [org.apache.ant/ant]]
1010
]
11-
:jvm-opts ["-Xmx4g" "-XX:+UseConcMarkSweepGC"] ; cljsbuild eats memory
11+
:jvm-opts ["-Xmx1g" "-XX:+UseConcMarkSweepGC"] ; cljsbuild eats memory
1212
:cljsbuild {:builds [{:source-paths ["src"]
1313
:compiler {:optimizations :simple
1414
:externs ["externs/jquery.js" "externs/throttle.js" "externs/codemirror.js"]

0 commit comments

Comments
 (0)