Revert "--add-data must be separated by semicolon"

This reverts commit d224f5c898.
This commit is contained in:
Gabriel Niziolek
2024-01-25 10:53:43 -03:00
parent 9e5e0015f0
commit bd5c434b9b
2 changed files with 1 additions and 36 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