diff options
Diffstat (limited to 'hooks/post-receive')
-rwxr-xr-x | hooks/post-receive | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hooks/post-receive b/hooks/post-receive index 6269af4..9394af9 100755 --- a/hooks/post-receive +++ b/hooks/post-receive @@ -25,7 +25,7 @@ for i in ${FILES_E[*]} ${FILES_A[*]} ${FILES_M[*]}; do else # Don't want to use dest for this, as we don't want to change file # extentions - install -D "${i}" "${_web}/${i}" + install -v -D "${i}" "${_web}/${i}" fi done |