aboutsummaryrefslogtreecommitdiff
path: root/bin/update-scripts-repo.sh
blob: e699472b6775f0b96771e2daded5ff2b46957118 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash
# Author : Clyhtsuriva

SCRIPTS_REPO_PATH="$HOME/workbench/scripts/"

pushd "$SCRIPTS_REPO_PATH" || exit 1

cp -rv "$HOME/.local/usr/local/bin" .
cp -rv "$HOME/workbench/auto-void-packages" .
cp -rv "$HOME/workbench/ansible" .

git add . && git commit && git push -v --progress

popd || exit 1