Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jan 11, 2024
1 parent 0782c7d commit 07fb9a2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions steps/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
set -e
set -o pipefail

if [[ "$OSTYPE" == "linux-gnu"* ]]; then
linux=yes
fi
set -x

if [ -n "${linux}" ]; then
SUDO=
else
Expand All @@ -37,11 +42,6 @@ if [ -n "${linux}" ]; then
fi
fi

if [[ "$OSTYPE" == "linux-gnu"* ]]; then
linux=yes
fi
set -x

if [ -n "${linux}" ]; then
apt-get -y update
apt-get install -y coreutils
Expand Down Expand Up @@ -111,7 +111,7 @@ if ! xmlstarlet --version >/dev/null 2>&1; then
fi

if [ ! -e "${HOME}/texmf" ]; then
tlmgr init-usertree
$SUDO tlmgr init-usertree
fi
$SUDO tlmgr option repository ctan
$SUDO tlmgr --verify-repo=none update --self
Expand Down

0 comments on commit 07fb9a2

Please sign in to comment.