Skip to content

Commit

Permalink
Remove trailing whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
emezeske committed Mar 18, 2012
1 parent 6ca4470 commit 13fab89
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion plugin/src/leiningen/cljsbuild.clj
Expand Up @@ -53,7 +53,7 @@
(:source-path opts#)
~crossover-path
(:compiler opts#)
(:notify-command opts#)
(:notify-command opts#)
~watch?))
'~parsed-builds))))))

Expand Down
10 changes: 5 additions & 5 deletions support/src/cljsbuild/compiler.clj
Expand Up @@ -28,11 +28,11 @@
(defn- notify-cljs [cmd msg]
(try
(if (:bell cmd)
(print-safe \u0007))
(if (first (:shell cmd))
(util/sh (assoc cmd :shell (map #(if (= % "%") msg %) (:shell cmd)))))
(print-safe \u0007))
(if (first (:shell cmd))
(util/sh (assoc cmd :shell (map #(if (= % "%") msg %) (:shell cmd)))))
(catch Throwable e
(pst+ e)))
(pst+ e)))
(println-safe msg))

(defn- compile-cljs [cljs-path compiler-options notify-command]
Expand All @@ -59,7 +59,7 @@
(loop [last-dependency-mtimes {}]
(let [output-file (:output-to compiler-options)
output-mtime (if (fs/exists? output-file) (fs/mod-time output-file) 0)
find-cljs #(util/find-files % #{"cljs"})
find-cljs #(util/find-files % #{"cljs"})
dependency-files (mapcat find-cljs [cljs-path crossover-path])
dependency-mtimes (map fs/mod-time dependency-files)]
(when
Expand Down

0 comments on commit 13fab89

Please sign in to comment.