Skip to content

Commit 9565ccf

Browse files
committed
Merge pull request #15 from wilkerlucio/patch-1
fix github client secret assertion
2 parents 158b321 + ba8b624 commit 9565ccf

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)