Revert "add add_data_dirs input"

This reverts commit 0ce759f0a3.
This commit is contained in:
Gabriel Niziolek
2024-01-25 10:53:51 -03:00
parent bd5c434b9b
commit e40854d22c
2 changed files with 1 additions and 28 deletions

View File

@@ -19,8 +19,6 @@ WORKDIR=${SRCDIR:-/src}
SPEC_FILE=${4:-*.spec}
ADD_DATA_DIRS=$6
python -m pip install --upgrade pip wheel setuptools
#
@@ -48,23 +46,9 @@ if [ -f $5 ]; then
fi # [ -f $5 ]
ADD_DATA=""
# ADD_DATA_DIRS is empty or not provided
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 "
done
# Remove the extra space at the end of the output string
ADD_DATA=${ADD_DATA::-1}
fi
# if [[ "$@" == "" ]]; then
pyinstaller --clean -y $ADD_DATA --dist ./dist/windows --workpath /tmp $SPEC_FILE
pyinstaller --clean -y --dist ./dist/windows --workpath /tmp $SPEC_FILE
chown -R --reference=. ./dist/windows
# else
# sh -c "$@"