##// END OF EJS Templates
upate exmaple notebooks to nbformat v4
upate exmaple notebooks to nbformat v4

File last commit:

r18351:0ab76370
r18669:b6d2fd61
Show More
post-checkout
22 lines | 564 B | text/plain | TextLexer
Thomas Kluyver
Git hooks use bash specific syntax
r17605 #!/bin/bash
MinRK
add git hooks for submodules...
r10551
git submodule init
git submodule update
MinRK
attempt to regen source maps in git-hooks...
r17335
MinRK
minor tweak to git hooks...
r17361 if [[ "$(basename $0)" == "post-merge" ]]; then
PREVIOUS_HEAD=ORIG_HEAD
else
PREVIOUS_HEAD=$1
fi
MinRK
use invoke instead of fabric...
r18351 # if style changed (and less/invoke available), rebuild sourcemaps
MinRK
attempt to regen source maps in git-hooks...
r17335 if [[
! -z "$(git diff $PREVIOUS_HEAD IPython/html/static/style/ipython.min.css)"
&& ! -z "$(git diff $PREVIOUS_HEAD IPython/html/static/style/style.min.css)"
&& ! -z $(which 2>/dev/null lessc)
MinRK
use invoke instead of fabric...
r18351 && ! -z $(which 2>/dev/null invoke)
MinRK
attempt to regen source maps in git-hooks...
r17335 ]]; then
echo "rebuilding sourcemaps"
cd IPython/html
MinRK
minor tweak to git hooks...
r17361 fab css || echo "failed to compile css"
MinRK
attempt to regen source maps in git-hooks...
r17335 fi