Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
Jena 3.17.0
-
None
Description
Issue JENA-1734 introduced the FUSEKI_BASE variable. to the script file fuseki-server. However, the script fail to process FUSEKI_BASE usage when the variable contains spaces.
Example:
FUSEKI_BASE is set to "/some/dir/with/a space"
Then, the script complains:
.../fuseki-server: 100: [: /some/dir/with/a: unexpected operator
Fix:
Line 100:
if [ -d $FUSEKI_BASE/extra ]
should be changed to:
if [ -d "$FUSEKI_BASE/extra" ]
Attachments
Issue Links
- links to