This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-11-22
Channels
- # aws (1)
- # beginners (102)
- # boot (5)
- # cljs-dev (59)
- # cljsjs (1)
- # clojure (154)
- # clojure-australia (1)
- # clojure-brasil (1)
- # clojure-dusseldorf (4)
- # clojure-greece (36)
- # clojure-italy (10)
- # clojure-poland (5)
- # clojure-romania (1)
- # clojure-russia (7)
- # clojure-spec (32)
- # clojure-uk (113)
- # clojure-ukraine (3)
- # clojurescript (107)
- # cursive (13)
- # data-science (25)
- # datomic (23)
- # emacs (3)
- # events (1)
- # fulcro (72)
- # funcool (10)
- # graphql (1)
- # leiningen (1)
- # luminus (2)
- # lumo (38)
- # off-topic (14)
- # onyx (78)
- # planck (4)
- # re-frame (55)
- # reagent (1)
- # ring (3)
- # ring-swagger (2)
- # rum (19)
- # shadow-cljs (89)
- # spacemacs (101)
- # sql (2)
- # unrepl (88)
is there a trick using single-dash command line arguments? My script looks like this:
(ns bar.core
(:require [planck.core :refer [*command-line-args*]]))
(println *command-line-args*)
but I don't see the -f
when running it:
$ planck bar.cljs logs -f stuff
(logs stuff)
@bmaddy That's a bug https://github.com/mfikes/planck/issues/550 It did not occur with Planck 1.17 (the Objective C version, prior to the C port)
@bmaddy Fix was fairly simple. It is currently committed to this branch https://github.com/mfikes/planck/tree/fix-550