Skip to content

Commit

Permalink
[meta] remove cljx step from install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed May 25, 2015
1 parent 35a68a3 commit c8ca5e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions install-all.sh
Expand Up @@ -6,19 +6,16 @@ readonly ARGS="$@"
readonly PREFIX="geom-"

main() {
local modules="core types meshops physics svg voxel"
local modules="core types meshops physics svg voxel webgl"

for m in $modules
do
echo "installing module $PREFIX$m..."
echo "----------------------------------------"
cd $PROGDIR/$PREFIX$m/babel
lein do clean, cljx once, install
lein do clean, install
done

cd $PROGDIR/geom-webgl/babel
lein do clean, install

cd $PROGDIR/babel
lein do clean, install
}
Expand Down
2 changes: 1 addition & 1 deletion install-module.sh
Expand Up @@ -11,7 +11,7 @@ main() {
echo "installing module $PREFIX$m..."
echo "----------------------------------------"
cd $PROGDIR/$PREFIX$m/babel
lein do clean, cljx once, install
lein do clean, install
done
}

Expand Down

0 comments on commit c8ca5e5

Please sign in to comment.