forked from a/repotool
9 lines
250 B
Fish
9 lines
250 B
Fish
|
|
#!/usr/bin/env fish
|
||
|
|
|
||
|
|
# Set default REPOTOOL_PATH if not already set
|
||
|
|
if not set -q REPOTOOL_PATH
|
||
|
|
set -gx REPOTOOL_PATH "$HOME/repo"
|
||
|
|
end
|
||
|
|
|
||
|
|
# Create alias that sources the main repotool function
|
||
|
|
alias repo="source $REPOTOOL_PATH/.shell/repotool.fish"
|