mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-05 09:01:40 -05:00

Do not assume python... leverage ESS to improve R interaction. Fix both undo and fontify in the presence of toggling cells (`C-c C-t`) Fix and test switching kernels
19 lines
360 B
Bash
19 lines
360 B
Bash
#!/bin/bash
|
|
|
|
# Install evm for Travis CI
|
|
# or if already installed, then check for updates
|
|
# Author: gonewest818 https://github.com/clojure-emacs/cider/pull/2139
|
|
set -x
|
|
|
|
WORKDIR=${HOME}/local
|
|
EVMDIR=$WORKDIR/evm
|
|
|
|
. tools/retry.sh
|
|
|
|
if [ -d $EVMDIR ]
|
|
then
|
|
cd $EVMDIR
|
|
git pull origin master
|
|
else
|
|
git clone https://github.com/rejeep/evm.git $EVMDIR
|
|
fi
|