summaryrefslogtreecommitdiff
path: root/status.sh
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-07-27 17:15:01 +0300
committerLars Wirzenius <liw@liw.fi>2018-07-27 17:15:01 +0300
commit4b548fefc88a02c0cf3c78506e07ab0a66627761 (patch)
treed1172753d6b2ba8fc99cb8e72844b97c4c2de9f4 /status.sh
parent37147aa3ce743132cb973d8adec54fe7d8b2d08c (diff)
downloadliw-ci-4b548fefc88a02c0cf3c78506e07ab0a66627761.tar.gz
Add: script to show only non-done statuses
Diffstat (limited to 'status.sh')
-rwxr-xr-xstatus.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/status.sh b/status.sh
new file mode 100755
index 0000000..ffd9403
--- /dev/null
+++ b/status.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+set -eu
+icktool status | awk '$1 == "project" || /^-/ || $3 != "done"' | grep -v 'dummy'
+