This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/master by this push:
new 00f11c20c5 warning instead of error if project folder does not exist
in container. fixes #2543
new 965a30be3f Merge pull request #2546 from bamaer/2543
00f11c20c5 is described below
commit 00f11c20c591fc7bf2012972d544d23a2d3690af
Author: Bart Maertens <[email protected]>
AuthorDate: Fri Mar 10 11:31:58 2023 +0100
warning instead of error if project folder does not exist in container.
fixes #2543
---
docker/resources/load-and-execute.sh | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/docker/resources/load-and-execute.sh
b/docker/resources/load-and-execute.sh
index 55dabc67fc..b15f386d13 100755
--- a/docker/resources/load-and-execute.sh
+++ b/docker/resources/load-and-execute.sh
@@ -145,8 +145,7 @@ if [ -n "${HOP_PROJECT_FOLDER}" ]; then
# The project folder should exist
#
if [ ! -d "${HOP_PROJECT_FOLDER}" ]; then
- log "Error: the folder specified in variable HOP_PROJECT_FOLDER does not
exist: ${HOP_PROJECT_FOLDER}"
- exitWithCode 9
+ log "Warning: the folder specified in variable HOP_PROJECT_FOLDER does not
exist in the container: ${HOP_PROJECT_FOLDER}"
else
log "The specified project folder exists"
fi