Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/pandoc.ex2
-rw-r--r--mix.exs2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/pandoc.ex b/lib/pandoc.ex
index ca30847..669b5ff 100644
--- a/lib/pandoc.ex
+++ b/lib/pandoc.ex
@@ -172,7 +172,7 @@ defmodule Pandoc do
not File.cd!(opts[:cd], fn ->
input_files |> Enum.map(&File.exists?(&1)) |> Enum.all?()
end) do
- parsed_args[:output] |> Path.expand(opts[:cd]) |> File.rm!()
+ parsed_args[:output] |> Path.expand(opts[:cd]) |> File.rm()
else
bin_path() |> System.cmd(args ++ extra_args, opts) |> elem(1)
end
diff --git a/mix.exs b/mix.exs
index ab539d3..adb0ecf 100644
--- a/mix.exs
+++ b/mix.exs
@@ -1,7 +1,7 @@
defmodule Pandoc.MixProject do
use Mix.Project
- @version "0.3.0"
+ @version "0.3.1"
@source_url "https://webdevcat.me/git/pandoc/"
def project do