3dcc048299
date: 2026-06-19T21:43:27 master commit: 5d90689776fdc7a3be31fc1335003aee20a2ba62
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"
|