Skip to content

Commit

Permalink
Merge pull request #16 from ba-st/make_configure_script_optional
Browse files Browse the repository at this point in the history
Update stone-init script to not fail if configuration script is missing
  • Loading branch information
gcotelli authored Apr 8, 2024
2 parents b293d84 + 2d18264 commit 977162d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/stone-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ startstone \
gslist -cvl

# Configure GS repository

"${GEMSTONE_GLOBAL_DIR}"/configure.sh
if [ -f "${GEMSTONE_GLOBAL_DIR}"/configure.sh ]; then
"${GEMSTONE_GLOBAL_DIR}"/configure.sh
fi

# wait forever, (loop to handle multiple signals if needed)
while true
Expand Down

0 comments on commit 977162d

Please sign in to comment.