mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
8 lines
124 B
Bash
Executable file
8 lines
124 B
Bash
Executable file
#!/bin/bash
|
|
|
|
function export_variables {
|
|
local util_dir=~/qmk_utils
|
|
export PATH=$PATH:$util_dir
|
|
}
|
|
|
|
export_variables
|