Bug 4485: Fixed wrong syntax in options.exe by Daniel Zimmermann

Commited the ChangeLog.txt from the release.

svn path=/trunk/tools/RosBE/; revision=981
This commit is contained in:
Daniel Reimer 2009-05-10 12:58:02 +00:00
parent 8755f4bf64
commit dd0b7eacd0
2 changed files with 8 additions and 7 deletions

View File

@ -10,13 +10,13 @@
$host.ui.RawUI.WindowTitle = "Options"
if "%ROS_ARCH%" == "amd64" (
$options=$_ROSBE_BASEDIR\Tools\options64.exe
$cfgfile=$ENV:APPDATA\RosBE\rosbe-options-amd64.cmd
else
$options=$_ROSBE_BASEDIR\Tools\options.exe
$cfgfile=$ENV:APPDATA\RosBE\rosbe-options.cmd
)
if ("$ROS_ARCH" -eq "amd64") {
$options="$_ROSBE_BASEDIR\Tools\options64.exe"
$cfgfile="$ENV:APPDATA\RosBE\rosbe-options-amd64.cmd"
} else {
$options="$_ROSBE_BASEDIR\Tools\options.exe"
$cfgfile="$ENV:APPDATA\RosBE\rosbe-options.cmd"
}
#
# Run options.exe

View File

@ -14,6 +14,7 @@
* Let the Installer change the Security Level of Powershell to Remote Signed.
* Generate Shortcuts for the PS Versions.
* Fix some typos in the PS files to fully work with the new GCC
- sSVN can show the Log Files now. ONLY in the PS Version (Daniel Reimer)
*** April 07th, 2009 - RosBE 1.4.1 Released