diff options
author | Aaron Ball <nullspoon@oper.io> | 2022-01-25 14:44:40 -0700 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2022-01-25 16:01:57 -0700 |
commit | 74bdcd2a150603fb51a9f040cc9afa22c2ab09f6 (patch) | |
tree | 6a2ffe59cc5455ca56d95c110de7e67ce1fd5a0a /hooks | |
parent | 6c8446f5c830075f736b7a400e763c2a007ff63b (diff) | |
download | oper.io-74bdcd2a150603fb51a9f040cc9afa22c2ab09f6.tar.gz oper.io-74bdcd2a150603fb51a9f040cc9afa22c2ab09f6.tar.xz |
Update styles so header sticks to top on mobile
Also update post-receive to install verbose for res files.
Diffstat (limited to 'hooks')
-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 |