From 141199a3597a5fecd4e0a962b2753bd97bc340bb Mon Sep 17 00:00:00 2001 From: Robert Beene <robert@echobind.com> Date: Mon, 27 Aug 2018 10:39:26 -0400 Subject: [PATCH] Fix typo in Logger statement (#55) --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 44baf6d..9486661 100644 --- a/mix.exs +++ b/mix.exs @@ -46,7 +46,7 @@ defmodule FileSystem.Mixfile do Logger.info "Compiling file system watcher for Mac..." cmd = "clang -framework CoreFoundation -framework CoreServices -Wno-deprecated-declarations #{source} -o #{target}" if Mix.shell.cmd(cmd) > 0 do - Logger.error "Could not compile file system watcher for Mac, try to run #{inspect cmd} manually inside the dependnecy." + Logger.error "Could not compile file system watcher for Mac, try to run #{inspect cmd} manually inside the dependency." else Logger.info "Done." end -- GitLab