diff --git a/eoa.rc b/eoa.rc index 6d7a469..257d8d5 100644 --- a/eoa.rc +++ b/eoa.rc @@ -14,7 +14,7 @@ e15=$rootpath/eoa-1.5 # build sphinx documentation and open in browser function msx(){ cd $1; - rm -rf $1/_build/html; + make clean; make html; open $1/_build/html/index.html; cd - @@ -23,7 +23,7 @@ function msx(){ # build sphinx documentation silently function msxs(){ cd $1; - rm -rf $1/_build/html; + make clean; make html; cd - }