Skip to content

Commit

Permalink
Fix typo in French irony
Browse files Browse the repository at this point in the history
  • Loading branch information
ehashman committed Jun 20, 2018
1 parent e380550 commit c8dfc18
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/leiningen/new.clj
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@
(abort "Sorry, names such as clojure or *jure are not allowed."
"\nIf you intend to use this name ironically, please set the"
"\nLEIN_IRONIC_JURE environment variable and try again.")
(and (re-find #"(?i)(?<!(cl|comp))eaxure" name)
(not (System/getenv "LEIN_IRONIC_EAXURE")))
(abort "Sorry, names such as cleaxure or *eaxure are not allowed."
(and (re-find #"(?i)(?<!(cl|comp))eauxure" name)
(not (System/getenv "LEIN_IRONIC_EAUXURE")))
(abort "Sorry, names such as cleauxure or *eauxure are not allowed."
"\nIf you intend to use this name ironically, please set the"
"\nLEIN_IRONIC_EAXURE environment variable and try again.")
"\nLEIN_IRONIC_EAUXURE environment variable and try again.")
(or (= name "clojure") (= name "cljs"))
(abort "Sorry, clojure and cljs can't be used as project names."
"\nIt will confuse the compiler and cause obscure issues.")
Expand Down

0 comments on commit c8dfc18

Please sign in to comment.