Skip to content

Commit ba8b624

Browse files
committed
fix github client secret assertion
I was reading through the code and noticed that this parentheses were in a wrong place :)
1 parent 158b321 commit ba8b624

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clj/cljsfiddle/handler.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
(assert (env :session-secret) "SESSION_SECRET environment variable not set")
2828
(assert (env :cljsfiddle-version) "CLJSFIDDLE_VERSION environment variable not set")
2929
(assert (env :github-client-id) "GITHUB_CLIENT_ID environment variable not set")
30-
(assert (env :github-client-secret "GITHUB_CLIENT_SECRET environment variable not set"))
30+
(assert (env :github-client-secret) "GITHUB_CLIENT_SECRET environment variable not set")
3131

3232
(defn ensure-jscache-dir []
3333
(let [p (str "resources/jscache/" (:cljsfiddle-version env) "/")

0 commit comments

Comments
 (0)