Appreciations accepted

Vladlen Litvinov, the author: If you have some job offer for me, I'm ready to discuss it. View Vladlen Litvinov's profile on LinkedIn

Password

Thursday, January 31, 2013

How to start an installation of BPM 7.5 using launchpad.sh in Linux/Unix?

During installation of BPM 7.5 using launchpad.sh you can get this error:

cp: cannot stat `/distrib/BPM75/launchpad/lib': No such file or directory


The script launchpad.sh uses a browser such Firefox (I hope you didn't forget to install it!), but script contains the piece checking the version of it.
The issue is BPM 7.5 installation script "does not know" Firefox version 10 and higher.
(In BPM 8 this script was updated).
Let's help it.

cd /launchpad
cat browser.sh

supportedFirefoxVersion()
{
 case "$*" in
  *Firefox\ [1-9].*) return 0;;
  *Firefox/[1-9].*) return 0;;
  *Firefox*) return 1;;
  *rv:1.[7-9]*) return 0;;
  *rv:[2-9].*) return 0;;
  *rv:*) return 1;;
  Mozilla*\ 1.[7-9]*) return 0;;
  Mozilla*\ [2-9].[0-9]*) return 0;;
  *) return 1;;
 esac
}


Just change red 1 to 0

  *Firefox*) return 0;;

and restart launchpad.sh

The issue disappeared.

No comments:

Post a Comment