We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57a6c94 commit fccf801Copy full SHA for fccf801
test/babashka/bbin/scripts/git_dir_test.clj
@@ -91,15 +91,3 @@
91
(is (= git-ssh-url-lib out))
92
(is (fs/exists? bin-file))
93
(is (= "Hello world!" (tu/run-bin-script 'hello))))))
94
-
95
-(defn read-all
96
- [file]
97
- (let [rdr (-> file io/file io/reader PushbackReader.)]
98
- (loop [forms []]
99
- (let [form (try (read rdr) (catch Exception e nil))]
100
- (if form
101
- (recur (conj forms form))
102
- forms)))))
103
104
-(comment
105
- (run! tap> (read-all "debug.edn")))
0 commit comments