mirror of
https://github.com/lbonn/rofi
synced 2025-02-17 05:18:31 +00:00
12 lines
197 B
Bash
12 lines
197 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
## Did not get this working in meson directly.
|
||
|
## not via generator or custom_target.
|
||
|
|
||
|
pushd "${MESON_SOURCE_ROOT}"
|
||
|
|
||
|
for a in $@
|
||
|
do
|
||
|
go-md2man -in $a -out ${a%.markdown}
|
||
|
done
|