diff options
author | Aaron Ball <nullspoon@oper.io> | 2024-08-03 17:26:21 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2024-08-03 17:26:21 -0600 |
commit | 37b13ad667ae2c91aca36e482e338174ef1f29cc (patch) | |
tree | 237f2d13fab33cb9debe9ebe9e97a8817dd49fb6 | |
parent | 27743d314129925baa2453f71ac8d96894701da1 (diff) | |
download | crux-ports-fonts-37b13ad667ae2c91aca36e482e338174ef1f29cc.tar.gz crux-ports-fonts-37b13ad667ae2c91aca36e482e338174ef1f29cc.tar.xz |
Update post-receive hook
This will print newly added files
-rw-r--r-- | hooks/post-receive | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hooks/post-receive b/hooks/post-receive index d3b2a49..9b245fc 100644 --- a/hooks/post-receive +++ b/hooks/post-receive @@ -11,6 +11,7 @@ rsync -a \ --exclude '.git*' \ ./ ${dest}/ || true +printf '[git] Adding %s\n' ${FILES_A[@]:-nothing} printf '[git] Updating %s\n' ${FILES_M[@]:-nothing} printf '[git] Removing %s\n' ${FILES_D[@]:-nothing} |