-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix build product path to work on case sensitive and insensitive file…
… systems (#116)
- Loading branch information
1 parent
d951a09
commit f25dd8c
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters