mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
20ed43983b
Having a clear namespace `omf.` improves the readability of the code as we clarify what is the function name and what is the namespace.
11 lines
220 B
Fish
11 lines
220 B
Fish
function omf.util_mkdir -a name
|
|
set -l name "$argv[1]"
|
|
if test -d "$OMF_CONFIG"
|
|
set name "$OMF_CONFIG/$name"
|
|
else if test -d "$OMF_PATH"
|
|
set name "$OMF_PATH/$name"
|
|
end
|
|
mkdir -p "$name"
|
|
echo $name
|
|
end
|