doc: contribution: Fix series-push-hook path

The script is located in the scripts directory, not root.

Signed-off-by: Sturla Lange <sturla22@gmail.com>
This commit is contained in:
Sturla Lange 2020-05-16 22:02:14 +02:00 committed by Kumar Gala
commit 31b19bf538

View file

@ -375,7 +375,7 @@ before pushing on zephyr repo. To do this, make the file
while read local_ref local_sha remote_ref remote_sha while read local_ref local_sha remote_ref remote_sha
do do
args="$remote $url $local_ref $local_sha $remote_ref $remote_sha" args="$remote $url $local_ref $local_sha $remote_ref $remote_sha"
exec ${ZEPHYR_BASE}/series-push-hook.sh $args exec ${ZEPHYR_BASE}/scripts/series-push-hook.sh $args
done done
exit 0 exit 0