From f25dd8c9f16be1f81a152f6861d7216c3c9302da Mon Sep 17 00:00:00 2001 From: Marina Date: Mon, 31 Aug 2020 12:41:34 +0200 Subject: [PATCH] Fix build product path to work on case sensitive and insensitive file systems (#116) --- Makefile | 8 ++++---- README.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index f98ff1d..54ff6b3 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ install: swift package update swift build -c release - install .build/Release/SplashHTMLGen /usr/local/bin/SplashHTMLGen - install .build/Release/SplashMarkdown /usr/local/bin/SplashMarkdown - install .build/Release/SplashImageGen /usr/local/bin/SplashImageGen - install .build/Release/SplashTokenizer /usr/local/bin/SplashTokenizer + install .build/release/SplashHTMLGen /usr/local/bin/SplashHTMLGen + install .build/release/SplashMarkdown /usr/local/bin/SplashMarkdown + install .build/release/SplashImageGen /usr/local/bin/SplashImageGen + install .build/release/SplashTokenizer /usr/local/bin/SplashTokenizer diff --git a/README.md b/README.md index 1a8e27b..9e358aa 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ If you want to use Splash through one of its built-in command line tools, start ``` $ git clone https://github.com/johnsundell/splash.git -$ cd Splash +$ cd splash ``` To run a tool without installing it, you can use the Swift Package Manager's `run` command, like this: @@ -191,7 +191,7 @@ If you only wish to install one of these, compile it and then move it to `/usr/l ``` $ swift build -c release -Xswiftc -static-stdlib -$ install .build/Release/SplashHTMLGen /usr/local/bin/SplashHTMLGen +$ install .build/release/SplashHTMLGen /usr/local/bin/SplashHTMLGen ``` ## Contributions and support