Skip to content

Commit 1c3ed11

Browse files
authored
[Chore](build) copy jeprof to output/be/bin (#58128)
This pull request updates the build script to change the source location for copying BE binaries. Instead of copying specific BE shell scripts from the old location, it now copies all files from the new BE output directory, which helps ensure all necessary binaries are included. Build script update: * Changed the source path for copying BE binaries in `build.sh` from `bin/*_be.sh` to `be/output/bin/*`, ensuring all BE binaries are copied instead of just specific shell scripts.
1 parent a0e1306 commit 1c3ed11

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
@@ -809,7 +809,7 @@ if [[ "${OUTPUT_BE_BINARY}" -eq 1 ]]; then
809809
"${DORIS_OUTPUT}/be/www" \
810810
"${DORIS_OUTPUT}/be/tools/FlameGraph"
811811

812-
cp -r -p "${DORIS_HOME}/bin"/*_be.sh "${DORIS_OUTPUT}/be/bin"/
812+
cp -r -p "${DORIS_HOME}/be/output/bin"/* "${DORIS_OUTPUT}/be/bin"/
813813
cp -r -p "${DORIS_HOME}/be/output/conf"/* "${DORIS_OUTPUT}/be/conf"/
814814
cp -r -p "${DORIS_HOME}/be/output/dict" "${DORIS_OUTPUT}/be/"
815815

0 commit comments

Comments
 (0)