diff --git a/lib/livebook/config.ex b/lib/livebook/config.ex index 9cb238680..20985bec9 100644 --- a/lib/livebook/config.ex +++ b/lib/livebook/config.ex @@ -138,7 +138,7 @@ defmodule Livebook.Config do if writable_directory?(cache_path) do cache_path else - System.tmp_dir!() |> Path.join("livebook") + System.tmp_dir!() |> Path.expand() |> Path.join("livebook") end notebooks_path = Path.join(path, "notebooks")