Skip to content

Commit

Permalink
Fix build product path to work on case sensitive and insensitive file…
Browse files Browse the repository at this point in the history
… systems (#116)
  • Loading branch information
hybridcattt authored Aug 31, 2020
1 parent d951a09 commit f25dd8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit f25dd8c

Please sign in to comment.