mirror of
https://github.com/Bhupesh-V/ugit.git
synced 2026-09-10 07:26:20 -04:00
9 lines
232 B
Bash
9 lines
232 B
Bash
#!/usr/bin/env zsh
|
|
# Copyright 2021 Joseph Block <jpb@unixorn.net>
|
|
#
|
|
# Licensed under the MIT license.
|
|
|
|
# Append the repo's main directory to $PATH to make ugit available
|
|
PLUGIN_BIN="$(dirname $0)"
|
|
export PATH=${PATH}:${PLUGIN_BIN}
|