diff options
author | June McEnroe <curtis@hopper.com> | 2017-05-25 12:37:17 -0400 |
---|---|---|
committer | June McEnroe <curtis@hopper.com> | 2017-05-25 12:37:17 -0400 |
commit | 946bd49d340d5d9fb841bc2bbe7e97ac81cf5c6d (patch) | |
tree | 628efdb06d3f2e32359b438b28c7a36075c56aca | |
parent | Revert "Remove macOS keyboard layout" (diff) | |
download | src-946bd49d340d5d9fb841bc2bbe7e97ac81cf5c6d.tar.gz src-946bd49d340d5d9fb841bc2bbe7e97ac81cf5c6d.zip |
Fix Library install condition
-rwxr-xr-x | install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh index affb8b0f..9117874f 100755 --- a/install.sh +++ b/install.sh @@ -21,7 +21,7 @@ link() { echo "$1" } -if [ -d '~/Library' ]; then +if [ -d ~/Library ]; then link 'Library/Application Support/Karabiner/private.xml' link 'Library/Keyboard Layouts/Programmer.keylayout' fi |