Skip to content

Commit

Permalink
Fix scripts/set-release-date when LC_TIME is set
Browse files Browse the repository at this point in the history
We actually need to override LC_TIME if it is set, so use LC_ALL which
overrides everything rather than LANG that is used as a fallback.
  • Loading branch information
b4n committed Mar 19, 2017
1 parent 0dd1306 commit 46812c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/set-release-date
Expand Up @@ -2,7 +2,7 @@

set -e

export LANG=C
export LC_ALL=C

DATE=${1:-now}

Expand Down

0 comments on commit 46812c4

Please sign in to comment.