Skip to content

Commit d416f7e

Browse files
committed
Fix syntax error in the bash script regarding LD_LIBRARY_PATH
1 parent 9d068e6 commit d416f7e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/coverity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
/usr/local/cloudberry-db/lib
9191
sudo chown -R gpadmin:gpadmin /usr/local/cloudberry-db
9292
su - gpadmin -c "cd $WORKSPACE"
93-
export LD_LIBRARY_PATH=/usr/local/cloudberry-db/lib:LD_LIBRARY_PATH
93+
export LD_LIBRARY_PATH=/usr/local/cloudberry-db/lib:$LD_LIBRARY_PATH
9494
export PATH=$WORKSPACE/coverity_tool/bin:$PATH
9595
./configure --prefix=/usr/local/cloudberry-db \
9696
--disable-external-fts \

.github/workflows/sonarqube.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
/usr/local/xerces-c/lib/libxerces-c-3.3.so \
9595
/usr/local/cloudberry-db/lib
9696
sudo chown -R gpadmin:gpadmin /usr/local/cloudberry-db
97-
export LD_LIBRARY_PATH=/usr/local/cloudberry-db/lib:LD_LIBRARY_PATH
97+
export LD_LIBRARY_PATH=/usr/local/cloudberry-db/lib:$LD_LIBRARY_PATH
9898
./configure --prefix=/usr/local/cloudberry-db \
9999
--disable-external-fts \
100100
--enable-gpcloud \

devops/build/automation/cloudberry/scripts/build-cloudberry.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ init_environment "Cloudberry Build Script" "${BUILD_LOG}"
7171

7272
# Set environment
7373
log_section "Environment Setup"
74-
export LD_LIBRARY_PATH=${BUILD_DESTINATION}/lib:LD_LIBRARY_PATH
74+
export LD_LIBRARY_PATH=${BUILD_DESTINATION}/lib:${LD_LIBRARY_PATH}
7575
log_section_end "Environment Setup"
7676

7777
# Build process

devops/build/automation/cloudberry/scripts/configure-cloudberry.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ log_section_end "Initial Setup"
131131

132132
# Set environment
133133
log_section "Environment Setup"
134-
export LD_LIBRARY_PATH=${BUILD_DESTINATION}/lib:LD_LIBRARY_PATH
134+
export LD_LIBRARY_PATH=${BUILD_DESTINATION}/lib:${LD_LIBRARY_PATH}
135135
log_section_end "Environment Setup"
136136

137137
# Add debug options if ENABLE_DEBUG is set to "true"

devops/build/automation/cloudberry/scripts/unittest-cloudberry.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ init_environment "Cloudberry Unittest Script" "${UNITTEST_LOG}"
5656

5757
# Set environment
5858
log_section "Environment Setup"
59-
export LD_LIBRARY_PATH=${BUILD_DESTINATION}/lib:LD_LIBRARY_PATH
59+
export LD_LIBRARY_PATH=${BUILD_DESTINATION}/lib:${LD_LIBRARY_PATH}
6060
log_section_end "Environment Setup"
6161

6262
# Unittest process

0 commit comments

Comments
 (0)