--add-data must be separated by semicolon

This commit is contained in:
Gabriel Niziolek
2024-01-25 10:31:49 -03:00
parent 0ce759f0a3
commit d224f5c898
2 changed files with 36 additions and 1 deletions

View File

@@ -56,7 +56,7 @@ if [ ! -z "$ADD_DATA_DIRS" ]; then
# Process every directory in the ADD_DATA_DIRS string
for dir in $ADD_DATA_DIRS; do
# Add the formatted directory to the output string
ADD_DATA+="--add-data $SRCDIR/$dir:$dir "
ADD_DATA+="--add-data \"$SRCDIR/$dir;$dir\" "
done
# Remove the extra space at the end of the output string