11 lines
194 B
Bash
11 lines
194 B
Bash
|
#!/bin/bash
|
||
|
# AUTHOR: Jeremy Wall (jw), jeremy@marzhillstudios.com
|
||
|
|
||
|
if [ "$(uname -a | grep -e 'Linux.*Microsoft')" ]; then # start wsl module
|
||
|
|
||
|
function keybase_push() {
|
||
|
git.exe push $@
|
||
|
}
|
||
|
|
||
|
fi
|