mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-17 18:34:57 +02:00
.gitcheck: only redirect stdout to /dev/null
do not redirect stderr this will help us for debugging purposes Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -10,13 +10,13 @@ main()
|
|||||||
{
|
{
|
||||||
if [ $# -gt 0 ]; then
|
if [ $# -gt 0 ]; then
|
||||||
if [ "${1}" = "clean" ]; then
|
if [ "${1}" = "clean" ]; then
|
||||||
clean > /dev/null 2> /dev/null
|
clean 1> /dev/null
|
||||||
else
|
else
|
||||||
printf "%s: Unsupported argument\n" $0
|
printf "%s: Unsupported argument\n" $0
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
set_placeholders > /dev/null 2> /dev/null
|
set_placeholders 1> /dev/null
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user