Skip to content
Snippets Groups Projects
Select Git revision
  • 2ed0fcf62dedd6f38d8802034458bf840c4489f6
  • main default protected
2 results

KaTeX_Math-Italic.woff2

Blame
  • upgradeTetrasBack.sh 933 B
    #!/bin/bash
    
    # Copyright (C) 2017  Tetras Libre <admin@tetras-libre.fr>
    # Author: Beniamine, David <David.Beniamine@tetras-libre.fr>
    #
    # This program is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # (at your option) any later version.
    #
    # This program is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU General Public License
    # along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    OLD=$PWD
    DIR="$OLD/Tetras-back"
    if [ ! -d $DIR ]
    then
        echo "Tetras-back not installed, aborting"
        exit 1
    fi
    cd $DIR
    git pull
    make dependencies
    make
    cd $OLD