OraOpenSource / OXAR

Oracle XE & APEX build script along with images for popular cloud platforms
http://www.oraopensource.com/oxar/
MIT License
107 stars 43 forks source link

Install aborts when zip file name has parenthesis "(" in it. #221

Open z92127 opened 7 years ago

z92127 commented 7 years ago

When installing, I used a downloaded ZIP file from Oracle that had a (1) in the file name and the install failed. No errors were given, it just aborted. The file that caused the error is shown below. I renamed the file and removed the (1) and the install completed successfully.

Assuming the file is placed in the /tmp folder on the machine

OOS_ORACLE_FILE_URL=file:///tmp/ords.3.0.9.348.07.16(1).zip

janihur commented 7 years ago
jani@mba:~$ foo=foo.zip
jani@mba:~$ foo=foo(1).zip
-bash: syntax error near unexpected token `('
jani@mba:~$ foo="foo(1).zip"
jani@mba:~$

Add the quotes to the examples in README and config.properties "template"-file ?

OOS_ORACLE_FILE_URL="CHANGEME"