diff options
author | Aaron Ball <nullspoon@oper.io> | 2022-10-27 10:30:29 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2022-10-27 10:30:29 -0600 |
commit | 64a4cd1465266b01509a733fd3cd1baf89f4d730 (patch) | |
tree | 5505921dbb9788df7af3b799e9f91da7752ca2ac /hooks | |
parent | 072cee19c4485ef5dab40d5fb81c5f0f31271b33 (diff) | |
download | resume-64a4cd1465266b01509a733fd3cd1baf89f4d730.tar.gz resume-64a4cd1465266b01509a733fd3cd1baf89f4d730.tar.xz |
Fix post-receive hook deploy path
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 cd03d3c..c57e9cd 100644 --- a/hooks/post-receive +++ b/hooks/post-receive @@ -9,6 +9,6 @@ for i in ${FILES_A[@]} ${FILES_M[@]}; do if [ "${f%.*}" = 'resume' ] || [ "${d%.*}" = 'res' ]; then printf 'Generating and deploying resume\n' make - install -v -D out/resume.html "${WEB}/oper.io.git/master/resume.html" + install -v -D out/resume.html "${WEB}/oper.io/resume.html" fi done |