diff options
author | Max Kellermann <max@musicpd.org> | 2018-10-16 15:28:37 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-10-16 15:28:37 +0200 |
commit | 1f94cea889a4531539dc73cdd89439909c20b20c (patch) | |
tree | ed1ac22a9f0a7995f093fd20191c6890fb2f6541 | |
parent | 69749eb59166af9954b4a59c3ecd5033a90d6a9f (diff) |
doc/meson.build: fix target for "upload" target
-rw-r--r-- | doc/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/meson.build b/doc/meson.build index be59796b2..10e24eb35 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -37,7 +37,7 @@ custom_target( output: 'upload', build_always_stale: true, command: [ - 'rsync', '-vpruz', '--delete', meson.current_source_dir(), + 'rsync', '-vpruz', '--delete', meson.current_build_dir() + '/', 'www.musicpd.org:/var/www/mpd/doc/', '--chmod=Dug+rwx,Do+rx,Fug+rw,Fo+r', '--include=protocol', '--include=protocol/**', |