مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-12-01 05:43:04 +00:00
22 أسطر
365 B
Bash
ملف تنفيذي
22 أسطر
365 B
Bash
ملف تنفيذي
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ ! -d /tmp/postal-api/.git ];
|
|
then
|
|
git clone git@github.com:atech/postal-api /tmp/postal-api
|
|
else
|
|
git -C /tmp/postal-api reset --hard HEAD
|
|
git -C /tmp/postal-api pull origin master
|
|
fi
|
|
|
|
rm -Rf /tmp/postal-api/*
|
|
|
|
bundle exec moonrope api /tmp/postal-api
|
|
|
|
cd /tmp/postal-api
|
|
|
|
git add .
|
|
git commit -m "update docs"
|
|
git push origin master
|