Skip to content

Commit 325e2c0

Browse files
master: minor bugfix
1 parent abf3b08 commit 325e2c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kanban

+2-2
Original file line numberDiff line numberDiff line change
@@ -281,15 +281,15 @@ show(){
281281
} | columnize
282282
[[ -n $SMALLSCREEN ]] && echo -e " ${COL1}(${COL0} small terminal detected, hiding certain columns ${COL1})"
283283
echo ""
284-
ls */.kanban/.kanban.conf | awk '{
284+
ls */.kanban/.kanban.conf 2>/dev/null | awk '{
285285
if( !START ){
286286
print "kanbans: "
287287
START=1
288288
}
289289
gsub("^./","",$0)
290290
gsub("/.kanban.*","",$0)
291291
print " ├─ "$0
292-
}' 2>/dev/null
292+
}'
293293
}
294294

295295
get_current_date(){ date "+%Y-%m-%d@%H:%M"; }

0 commit comments

Comments
 (0)