We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b681e1 commit 2198632Copy full SHA for 2198632
features/src/utils/opt/devcontainer/bin/sccache/dist/status.sh
@@ -78,7 +78,11 @@ EOF
78
# Passthrough if the format is csv or json
79
# Otherwise, transform the csv into a tsv.
80
if test "$f" = tsv; then
81
- cat - | sed 's/\"//g' | column -t -s, -R $(seq -s, 1 13)
+ if [[ "$(grep DISTRIB_RELEASE= /etc/lsb-release | cut -d= -f2)" > "18.04" ]]; then
82
+ cat - | sed 's/\"//g' | column -t -s, -R $(seq -s, 1 13)
83
+ else
84
+ cat - | sed 's/\"//g' | column -t -s,
85
+ fi
86
else
87
cat -
88
fi
0 commit comments