13 lines
263 B
Bash
Executable file
13 lines
263 B
Bash
Executable file
#!/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;
|