aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lux-lein/src/leiningen/lux/packager.clj7
1 files changed, 4 insertions, 3 deletions
diff --git a/lux-lein/src/leiningen/lux/packager.clj b/lux-lein/src/leiningen/lux/packager.clj
index 2c23c5cc3..28c4f5497 100644
--- a/lux-lein/src/leiningen/lux/packager.clj
+++ b/lux-lein/src/leiningen/lux/packager.clj
@@ -226,6 +226,7 @@
(defn package
"(-> Text Text (List Text) Null)"
[project platform module resources-dirs]
- (case platform
- "jvm" (package-jvm project module resources-dirs)
- "js" nil))
+ (time
+ (case platform
+ "jvm" (package-jvm project module resources-dirs)
+ "js" nil)))