mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
12 lines
197 B
Bash
Executable file
12 lines
197 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
## Did not get this working in meson directly.
|
|
## not via generator or custom_target.
|
|
|
|
|
|
pushd "${MESON_BUILD_ROOT}"
|
|
|
|
for a in $@
|
|
do
|
|
go-md2man -in $a -out ${a%.markdown}
|
|
done
|