From 0a05bd71c3ce635c20459125f6008f26615e724c Mon Sep 17 00:00:00 2001 From: sahabaishakhi Date: Fri, 24 Jan 2020 01:21:01 +0530 Subject: [PATCH] removed extraneous clj file --- src/boot_build.clj | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 src/boot_build.clj diff --git a/src/boot_build.clj b/src/boot_build.clj deleted file mode 100644 index 57e2a6d..0000000 --- a/src/boot_build.clj +++ /dev/null @@ -1,12 +0,0 @@ -(ns demo.boot-build - (:require [boot.core :as core] - [boot.task.built-in :as task])) - -(core/deftask build - "Build my project." - [] - (comp (task/pom) (task/jar) (task/install))) - -(core/deftask hello - [] - (println "hello"))