mirror of
https://github.com/GrapheneOS/infrastructure.git
synced 2025-11-18 06:01:28 -05:00
11 lines
233 B
Bash
11 lines
233 B
Bash
set -o errexit -o nounset -o pipefail
|
|
shopt -s expand_aliases inherit_errexit
|
|
|
|
alias rsync='rsync -pcv --chmod=D755,F644 --preallocate'
|
|
|
|
touch lock
|
|
exec {fd}< lock
|
|
if ! flock -n $fd; then
|
|
echo already deploying >&2
|
|
exit 1
|
|
fi
|