Skip to content

Commit

Permalink
Non english locale bug
Browse files Browse the repository at this point in the history
  • Loading branch information
wende committed Feb 6, 2018
1 parent e8745fd commit 40e264a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elchemy
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ case "$1" in
compile)
# Create ./.elchemy if doesn't exist
mkdir -p ".elchemy"
MTIME="$(cat ".elchemy/mtime" 2> /dev/null || echo "Mon Apr 10 00:00:00 CET 1995")"
MTIME="$(cat ".elchemy/mtime" 2> /dev/null || echo "1995-04-10 23:35:02")"
echo "" > .elchemy/output
if [ ! -d ./elm-deps ] || [[ ! $(find ./elm-package.json -newermt "$MTIME") == "" ]]; then
if ! hash elm-github-install 2>/dev/null; then
Expand Down Expand Up @@ -127,7 +127,7 @@ case "$1" in
done < .elchemy/elixir_output
#rm .elchemy/elixir_output
#rm .elchemy/output
echo $(date) > .elchemy/mtime
echo $(date +"%Y-%m-%d %H:%M:%S") > .elchemy/mtime
;;
*)
echo $"Usage: $0 <COMMAND> [<ARGS>]"
Expand Down

0 comments on commit 40e264a

Please sign in to comment.