Add windows to checkDirs#14
Merged
Conversation
Owner
|
Thanks! |
Author
|
Glad that I could help.
…On Nov 18 2018, at 10:22 pm, Sibi ***@***.***> wrote:
Thanks!
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub ***@***.***/0?redirect=https%3A%2F%2Fgithub.com%2Fpsibi%2Ftldr-hs%2Fpull%2F14%23issuecomment-439688836&recipient=cmVwbHkrMDI0OGYyNmQ2OGY4OTlmMTA4NjczYWNmYjg4NDI4N2FlZTc0OGM0ZmU5YTE4NmY3OTJjZjAwMDAwMDAxMTgwOTFiODg5MmExNjljZTE2YzNlNjliQHJlcGx5LmdpdGh1Yi5jb20%3D), or mute the thread ***@***.***/1?redirect=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FAkjybUpS1Gib3wTko4AnkX6cp-QjL17Zks5uwVEIgaJpZM4Yn0x_&recipient=cmVwbHkrMDI0OGYyNmQ2OGY4OTlmMTA4NjczYWNmYjg4NDI4N2FlZTc0OGM0ZmU5YTE4NmY3OTJjZjAwMDAwMDAxMTgwOTFiODg5MmExNjljZTE2YzNlNjliQHJlcGx5LmdpdGh1Yi5jb20%3D).
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The problem
I noticed that
checkDirs(inapp/Main.hs) only contains thecommon,linuxandosxdirectories, but not thewindowsdirectory:However, both
stackandghchave support for Windows; even thoughtldr-hswill compile on Windows, it won't use the Windows specific pages.This PR aims to solve that problem.
The solution
The result is changing
checkDirsfrom it's previously stated definition to:and changing
getPagePath, from:to:
Status
This solution works perfectly fine on my
Ubuntu 18.04.1machine:(both
assocandclsare in thewindowspages directory;adduseris merely used to show that pages from other directories still load).