dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

install-evm.sh (360B)


      1 #!/bin/bash
      2 
      3 # Install evm for Travis CI
      4 # or if already installed, then check for updates
      5 # Author: gonewest818 https://github.com/clojure-emacs/cider/pull/2139
      6 set -x
      7 
      8 WORKDIR=${HOME}/local
      9 EVMDIR=$WORKDIR/evm
     10 
     11 . tools/retry.sh
     12 
     13 if [ -d $EVMDIR ]
     14 then
     15     cd $EVMDIR
     16     git pull origin master
     17 else
     18     git clone https://github.com/rejeep/evm.git $EVMDIR
     19 fi