summaryrefslogtreecommitdiff
path: root/.gitcheck
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-08-24 01:00:04 +0100
committerLeah Rowe <leah@libreboot.org>2023-08-24 01:00:04 +0100
commit3a5ba57f5e2366f035b12812062df593e78ec2ab (patch)
tree53a69e963bbe22a4590c4c2d94e3b635153c1957 /.gitcheck
parent8f4f0e00ec3c307599f7f27777e3e92c1f9f6e4e (diff)
.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>
Diffstat (limited to '.gitcheck')
-rwxr-xr-x.gitcheck4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitcheck b/.gitcheck
index ad63bdba..75c020cb 100755
--- a/.gitcheck
+++ b/.gitcheck
@@ -10,13 +10,13 @@ main()
{
if [ $# -gt 0 ]; then
if [ "${1}" = "clean" ]; then
- clean > /dev/null 2> /dev/null
+ clean 1> /dev/null
else
printf "%s: Unsupported argument\n" $0
exit 1
fi
else
- set_placeholders > /dev/null 2> /dev/null
+ set_placeholders 1> /dev/null
fi
}