3bd5475499
version: sunnypilot v2026.002.000 (staging) date: 2026-06-05T03:53:22 master commit: 46b9253729193e47a8be99154bae41c35359a373
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"
|