Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,19 @@ can pass it on the command line every time. If you are going to hope that you
don't need a valid key then just put X in as the value as without something
Pipal won't try to perform a look up.

Windows
-------

Git on Windows does not support symlink. Instead, the symlinks are converted to
text files with the path inside. Because pipal rely on symlinks in the
`checkers_enabled` directory, you need to recreate the symlinks as follows.

```
> cd checkers_enabled
> del 01basic.rb
> mklink 01basic.rb "../checkers_available/basic.rb"
```

Version History
===============

Expand Down
2 changes: 1 addition & 1 deletion checkers_enabled/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
*
# Except this file
!.gitignore
!README
!README.md
!01basic.rb
5 changes: 0 additions & 5 deletions checkers_enabled/README

This file was deleted.

17 changes: 17 additions & 0 deletions checkers_enabled/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
This directory contains the checkers you want to enable.

The way I see this working is the same as Apache does with modules and sites,
keep the checkers in the checkers_available directory but then symlink the
ones you want to use into here.

Linux
-----

$ ln -s 01basic.rb ../checkers_available/basic.rb

Windows
-------

$ mklink 01basic.rb "../checkers_available/basic.rb"

(For version of Windows prior to Vista, you need to copy checkers manually from the `checkers_available` folder to the `checkers_enable` folder)