Skip to content

Commit

Permalink
Remove TOKEN for security
Browse files Browse the repository at this point in the history
  • Loading branch information
efrecon committed Feb 15, 2024
1 parent 62426f3 commit 7a88eb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ usage() {
sed -r 's/([a-zA-Z-])\)/-\1/'
if [ -n "${2:-}" ]; then
printf '\nCurrent state:\n'
set | grep -E "^${2}_" | sed -E 's/^([A-Z])/ \1/g'
set | grep -E "^${2}_" | grep -v 'TOKEN' | sed -E 's/^([A-Z])/ \1/g'
fi
exit "${1:-0}"
}
Expand Down

0 comments on commit 7a88eb2

Please sign in to comment.