14 lines
263 B
Bash
14 lines
263 B
Bash
|
#!/bin/bash
|
||
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||
|
|
||
|
yay --noconfirm -Syu \
|
||
|
git \
|
||
|
gitflow-avh \
|
||
|
gitflow-bashcompletion-avh \
|
||
|
gitflow-fishcompletion-avh \
|
||
|
gitflow-zshcompletion-avh;
|
||
|
|
||
|
. "../../../Common/Config/git/install.sh";
|
||
|
|
||
|
popd > /dev/null;
|