6 lines
162 B
Bash
Executable file
6 lines
162 B
Bash
Executable file
#!/bin/bash
|
|
# Prints the path to Arch's `releng` template.
|
|
function templatePath() {
|
|
echo "$(dirname "$(which mkarchiso)")/../share/archiso/configs/releng"
|
|
}
|