diff options
author | Aaron Ball <nullspoon@oper.io> | 2020-12-02 11:48:52 -0700 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2020-12-02 11:48:52 -0700 |
commit | 475e51fac2d8d7b768ea3443d7678b73ffbdf952 (patch) | |
tree | 6c4d29313f9e52e5b9492ec5407e5f81fdbf51f9 /hooks | |
parent | e486a5c3a6249d12cb422d420d089fa4215c89d1 (diff) | |
download | ports-475e51fac2d8d7b768ea3443d7678b73ffbdf952.tar.gz ports-475e51fac2d8d7b768ea3443d7678b73ffbdf952.tar.xz |
One more fix for post-receive
Diffstat (limited to 'hooks')
-rw-r--r-- | hooks/post-receive | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hooks/post-receive b/hooks/post-receive index 57561cb..d19adfa 100644 --- a/hooks/post-receive +++ b/hooks/post-receive @@ -2,7 +2,7 @@ dest=${WEB}/oper.io.services/crux-ports # Copy files from working cache to destination -rsync -av --inplace --exclude hooks --exclude '.git*' ./ ${dest}/ +rsync -av --inplace --exclude hooks --exclude '.git*' ./ ${dest}/ || true printf '[git] Updating %s\n' ${FILES_E[@]} printf '[git] Removing %s\n' ${FILES_D[@]} |