mirror of
https://github.com/lbonn/rofi
synced 2024-11-15 00:27:36 +00:00
c62137f8ab
* rofi moved to libera.chat * unify some theme headers and whitespace * consistently use the same hashbang for bash * improve obsolete way of testing equality see https://github.com/koalaman/shellcheck/wiki/SC2268 for explanation * use consistent function definitions in bash scripts * remove duplicated author and fix whitespace * quote all variables in scripts fixes many warnings identified through shellcheck * fix whitespace in scripts * fix whitespace in non-source files * fix spelling in non-source files * fix whitespace and indentation in source files * fix spelling in source files
14 lines
372 B
Bash
Executable file
14 lines
372 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
TOP_DIR=$1
|
|
|
|
rofi -h -config "${TOP_DIR}/doc/test_xr.txt" | awk 'BEGIN{ found=1} /^Global options:/{found=0} {if (found) print }' > help-output.txt
|
|
|
|
if ! diff help-output.txt "${TOP_DIR}/doc/help-output.txt" >/dev/null
|
|
then
|
|
diff help-output.txt "${TOP_DIR}/doc/help-output.txt"
|
|
echo "Help output does not match."
|
|
exit 1
|
|
fi
|
|
|
|
exit "${RETV}"
|