You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 9, 2019. It is now read-only.
I think word splitting in line 363 causes this error:
[: too many arguments
I'm running VMware to the result of "imvirt" is "VMware ESX Server".
Because of the issue with line 363, the oab-java6.sh script skips the entire routine that creates GPG keys and signs the repository? Replacing [ ] with [[ ]] fixes the problem as [[ ]] disables word splitting:
if [[ imvirt != "OpenVZ" ]]; then
The text was updated successfully, but these errors were encountered:
Hi,
I think word splitting in line 363 causes this error:
[: too many arguments
I'm running VMware to the result of "imvirt" is "VMware ESX Server".
Because of the issue with line 363, the oab-java6.sh script skips the entire routine that creates GPG keys and signs the repository? Replacing [ ] with [[ ]] fixes the problem as [[ ]] disables word splitting:
if [[
imvirt
!= "OpenVZ" ]]; thenThe text was updated successfully, but these errors were encountered: