diff options
| author | MechMerlin | 2018-10-24 17:57:08 +0200 |
|---|---|---|
| committer | Drashna Jaelre | 2018-10-24 17:57:08 +0200 |
| commit | bef554d18bcb14492e2513b0759407e4b4581c9c (patch) | |
| tree | 982641ed9e574215ffd4b0e15ccbbfb588f4023d | |
| parent | 9ed0c2d57b4f5014c24ea48a6fe448b69789957b (diff) | |
Bug: Users had to be in the /util directory to run the script (#4228)
| -rwxr-xr-x | util/new_keymap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/new_keymap.sh b/util/new_keymap.sh index b09f3dd0ca..73cc9e8cc3 100755 --- a/util/new_keymap.sh +++ b/util/new_keymap.sh @@ -18,7 +18,7 @@ if [ -z "$USERNAME" ]; then exit 1 fi -cd .. +cd "$(dirname "$0")/.." if [ ! -d "keyboards/$KB_PATH" ]; then printf "Error! keyboards/%s does not exist!\n" "$KB_PATH" |