I am running the following command to export the repo content:
time ./import-export.sh \
--export \
--url=http://${EXPORT_HOST}/pentaho \
--username=pentaho-a \
--password=${BA_REPO_PWD} \
--file-path=${WORKSPACE}/all-ba-repo-files.zip \
--charset=UTF-8 \
--path=/ \
--withManifest=true \
--logfile=${WORKSPACE}/all-ba-repo-files-export.log
This command results in the file names with the URL encoding in them. (E.g. the spaces are getting replaced by "+" or "%2B"). Is there any way to avoid this url encoding in the filename? Please suggest the solution.
time ./import-export.sh \
--export \
--url=http://${EXPORT_HOST}/pentaho \
--username=pentaho-a \
--password=${BA_REPO_PWD} \
--file-path=${WORKSPACE}/all-ba-repo-files.zip \
--charset=UTF-8 \
--path=/ \
--withManifest=true \
--logfile=${WORKSPACE}/all-ba-repo-files-export.log
This command results in the file names with the URL encoding in them. (E.g. the spaces are getting replaced by "+" or "%2B"). Is there any way to avoid this url encoding in the filename? Please suggest the solution.