Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCatalin Mititiuc <webdevcat@proton.me>2024-12-09 21:48:20 -0800
committerCatalin Mititiuc <webdevcat@proton.me>2024-12-09 21:48:20 -0800
commit9d9a9bb13e99332a1fbe65d807b83bd1824eda5f (patch)
treeed9df305a23b21c745b38874f811bbd8f969fa33 /lib/pandoc.ex
parentc9cc0ed856cb5066751613a23ffea6cff0ec960b (diff)
Remove some comments
Diffstat (limited to 'lib/pandoc.ex')
-rw-r--r--lib/pandoc.ex9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/pandoc.ex b/lib/pandoc.ex
index ec5ce70..57606da 100644
--- a/lib/pandoc.ex
+++ b/lib/pandoc.ex
@@ -4,11 +4,6 @@ defmodule Pandoc do
"""
def run(profile, ["--watch" | dirs]) do
- IO.puts("""
-
- Pandoc watcher starting, env: #{Application.get_env(:pandoc, profile) |> inspect(pretty: true)}
- """)
-
ref =
__MODULE__.Supervisor
|> Supervisor.start_child(
@@ -51,10 +46,6 @@ defmodule Pandoc do
)
end)
- IO.puts("""
- System command running: #{inspect(Enum.join(["pandoc" | args ++ extra_args], " "))}
- """)
-
"pandoc" |> System.cmd(args ++ extra_args, opts) |> elem(1)
end
end