We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e66586 commit e32f4c5Copy full SHA for e32f4c5
paddle/scripts/paddle_build.sh
@@ -469,8 +469,8 @@ function assert_api_spec_approvals() {
469
BRANCH="develop"
470
fi
471
472
- API_FILES=('paddle/fluid/API.spec' 'paddle/fluid/framework/operator.h')
473
- for API_FILE in ${API_FILES}; do
+ API_FILES=("paddle/fluid/API.spec" "paddle/fluid/framework/operator.h")
+ for API_FILE in ${API_FILES[*]}; do
474
API_CHANGE=`git diff --name-only upstream/$BRANCH | grep "${API_FILE}" || true`
475
echo "checking ${API_FILE} change, PR: ${GIT_PR_ID}, changes: ${API_CHANGE}"
476
if [ ${API_CHANGE} ] && [ "${GIT_PR_ID}" != "" ]; then
0 commit comments