mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-06-10 06:56:13 +08:00
11 lines
196 B
Bash
Executable File
11 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if ! command -v tectonic &>/dev/null; then
|
|
echo "tectonic not found, installing..."
|
|
sudo pacman -S --noconfirm tectonic
|
|
fi
|
|
|
|
tectonic tinyspec.tex
|
|
echo "done: tinyspec.pdf"
|