Skip to content

Commit

Permalink
Use make clean instead
Browse files Browse the repository at this point in the history
  • Loading branch information
kthoden committed Apr 1, 2020
1 parent 1aca784 commit c6adb47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eoa.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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 -
Expand All @@ -23,7 +23,7 @@ function msx(){
# build sphinx documentation silently
function msxs(){
cd $1;
rm -rf $1/_build/html;
make clean;
make html;
cd -
}
Expand Down

0 comments on commit c6adb47

Please sign in to comment.