6 lines
120 B
Shell
6 lines
120 B
Shell
|
|
#! /usr/bin/env bash
|
||
|
|
|
||
|
|
cd "$(dirname "$0")"
|
||
|
|
name="$(basename "$(pwd)")"
|
||
|
|
|
||
|
|
typst compile --root .. ./main.typ ./"$name".pdf
|