Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismccord committed Jul 23, 2024
1 parent 271d195 commit 9b5ca91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tailwind.ex
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ defmodule Tailwind do

@doc false
def start(_, _) do
unless Application.get_env(:tailwind, :version) or Application.get_env(:tailwind, :path) do
unless Application.get_env(:tailwind, :version) || Application.get_env(:tailwind, :path) do
Logger.warning("""
tailwind version is not configured. Please set it in your config files:
Expand Down Expand Up @@ -106,7 +106,7 @@ defmodule Tailwind do
default_version =
if Application.get_env(:tailwind, :path), do: bin_version(), else: latest_version()

Application.get_env(:tailwind, :version, default_version)
Application.get_env(:tailwind, :version, default_version)
end

@doc """
Expand Down

0 comments on commit 9b5ca91

Please sign in to comment.