Skip to content

Commit f25dd8c

Browse files
authored
Fix build product path to work on case sensitive and insensitive file systems (#116)
1 parent d951a09 commit f25dd8c

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
install:
22
swift package update
33
swift build -c release
4-
install .build/Release/SplashHTMLGen /usr/local/bin/SplashHTMLGen
5-
install .build/Release/SplashMarkdown /usr/local/bin/SplashMarkdown
6-
install .build/Release/SplashImageGen /usr/local/bin/SplashImageGen
7-
install .build/Release/SplashTokenizer /usr/local/bin/SplashTokenizer
4+
install .build/release/SplashHTMLGen /usr/local/bin/SplashHTMLGen
5+
install .build/release/SplashMarkdown /usr/local/bin/SplashMarkdown
6+
install .build/release/SplashImageGen /usr/local/bin/SplashImageGen
7+
install .build/release/SplashTokenizer /usr/local/bin/SplashTokenizer

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ If you want to use Splash through one of its built-in command line tools, start
163163

164164
```
165165
$ git clone https://github.com/johnsundell/splash.git
166-
$ cd Splash
166+
$ cd splash
167167
```
168168

169169
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
191191

192192
```
193193
$ swift build -c release -Xswiftc -static-stdlib
194-
$ install .build/Release/SplashHTMLGen /usr/local/bin/SplashHTMLGen
194+
$ install .build/release/SplashHTMLGen /usr/local/bin/SplashHTMLGen
195195
```
196196

197197
## Contributions and support

0 commit comments

Comments
 (0)