Skip to content

Commit ec93336

Browse files
Include skbuild directory into build.sh clean operation (#11060)
This PR includes deletion of `_skbuild` build artifacts in `clean` option of `build.sh` Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) URL: #11060
1 parent 4dfd684 commit ec93336

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ if hasArg clean; then
249249
done
250250

251251
# Cleaning up python artifacts
252-
find ${REPODIR}/python/ | grep -E "(__pycache__|\.pyc|\.pyo|\.so$)" | xargs rm -rf
252+
find ${REPODIR}/python/ | grep -E "(__pycache__|\.pyc|\.pyo|\.so|\_skbuild$)" | xargs rm -rf
253253

254254
fi
255255

0 commit comments

Comments
 (0)