From: Laura Flores Date: Mon, 14 Jun 2021 17:03:01 +0000 (-0500) Subject: script/build-integration-branch: update print statement based on update to documentation X-Git-Tag: v17.1.0~1652^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F41841%2Fhead;p=ceph.git script/build-integration-branch: update print statement based on update to documentation The print statement originally suggested to the user to run "make && ctest -j12", but that is outdated. The user should execute "./run-make-check.sh" instead. Signed-off-by: Laura Flores --- diff --git a/src/script/build-integration-branch b/src/script/build-integration-branch index 9ff5b4e3e63..d92821b2f1f 100755 --- a/src/script/build-integration-branch +++ b/src/script/build-integration-branch @@ -109,4 +109,4 @@ for pr in prs: print('--- done. these PRs were included:') print('\n'.join(prtext).encode('ascii', errors='ignore').decode()) -print('--- perhaps you want to: make && ctest -j12 && git push ci %s' % branch) +print('--- perhaps you want to: ./run-make-check.sh && git push ci %s' % branch)