diff org/touch.org @ 316:2c7fbcbd5ebb

replaced clojure.contrib.shell-out with clojure.java.shell
author Robert McIntyre <rlm@mit.edu>
date Tue, 28 Feb 2012 13:44:46 -0600
parents e0e1561cbd22
children bb3f8a4af87f
line wrap: on
line diff
     1.1 --- a/org/touch.org	Tue Feb 28 13:32:44 2012 -0600
     1.2 +++ b/org/touch.org	Tue Feb 28 13:44:46 2012 -0600
     1.3 @@ -578,7 +578,7 @@
     1.4  #+begin_src clojure
     1.5  (ns cortex.video.magick4
     1.6    (:import java.io.File)
     1.7 -  (:use clojure.contrib.shell-out))
     1.8 +  (:use clojure.java.shell))
     1.9  
    1.10  (defn images [path]
    1.11    (sort (rest (file-seq (File. path)))))
    1.12 @@ -676,7 +676,7 @@
    1.13  #+begin_src clojure
    1.14  (ns cortex.video.magick5
    1.15    (:import java.io.File)
    1.16 -  (:use clojure.contrib.shell-out))
    1.17 +  (:use clojure.java.shell))
    1.18  
    1.19  (defn images [path]
    1.20    (sort (rest (file-seq (File. path)))))