mirror of
https://github.com/sigmasternchen/NurseBot
synced 2025-03-15 16:18:58 +00:00
10 lines
132 B
Bash
Executable file
10 lines
132 B
Bash
Executable file
#!/bin/bash
|
|
|
|
git checkout production
|
|
if test ! $? = 0; then
|
|
exit 1
|
|
fi
|
|
git pull origin production
|
|
if test ! $? = 0; then
|
|
exit 2
|
|
fi
|