public
Description: simple automation tool inspired by rake, written in Clojure
Homepage:
Clone URL: git://github.com/rosado/cloak.git
cloak / cloak_cmd.clj
100644 11 lines (8 sloc) 0.352 kb
1
2
3
4
5
6
7
8
9
10
11
;; simple automation system in Clojure
;; Roland Sadowski [szabla gmail com] http://www.haltingproblem.net/
 
;; this file is only for command line usage.
;; Assuming you have a script which lets you run clojure scripts:
;; $ clojure cloak_cmd.clj -- args
 
(ns rosado.cloak.cmd
  (:use [rosado.cloak :as cloak]))
 
(apply cloak/-main *command-line-args*)