mirror of
https://github.com/kardolus/chatgpt-cli.git
synced 2024-09-08 23:15:00 +03:00
15 lines
234 B
Bash
Executable File
15 lines
234 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -o pipefail
|
|
|
|
go get -u ./...
|
|
go mod vendor
|
|
|
|
if [[ `git status --porcelain` ]]; then
|
|
echo "Updated dependencies"
|
|
git add .
|
|
git ci -m "Bump dependencies"
|
|
git push
|
|
else
|
|
echo "Dependencies up to date"
|
|
fi
|