Running the SCM command line tool on the Mac
![](http://jazz.net/_images/myphoto/da4ecd755f4a2e75da668e3252daf9be.jpg)
Just an FYI, but following the directions for starting a build engine on a Mac that are included in https://jazz.net/learn/LearnItem.jsp?href=content/tech-notes/rational-team-concert-1_0-running-on-mac-os-x/index.html (TN0018: Running Rational Team Concert 1.0 on Mac OS X), I created a bash script to run the command-line tools as well:
#!/bin/bash
java -jar plugins/org.eclipse.equinox.launcher_*.jar $*
exit 0
I replace thescm command in the scmtools/eclipse directory with this script (which I call scm ) and it seems to work. The only issue I have is that I get the following error message whenever I execute this command:
The IBM Class Sharing Adaptor will not work in this configuration.
You are not running on J9.
Is there any way to get rid of this error message?
#!/bin/bash
java -jar plugins/org.eclipse.equinox.launcher_*.jar $*
exit 0
I replace the
You are not running on J9.
Is there any way to get rid of this error message?