Author: dreimer Date: Sun May 10 16:58:02 2009 New Revision: 40877
URL: http://svn.reactos.org/svn/reactos?rev=40877&view=rev Log: Bug 4485: Fixed wrong syntax in options.exe by Daniel Zimmermann Commited the ChangeLog.txt from the release.
Modified: trunk/tools/RosBE/RosBE-Windows/Powershell/options.ps1 trunk/tools/RosBE/RosBE-Windows/Root/ChangeLog.txt
Modified: trunk/tools/RosBE/RosBE-Windows/Powershell/options.ps1 URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/Powershel... ============================================================================== --- trunk/tools/RosBE/RosBE-Windows/Powershell/options.ps1 [iso-8859-1] (original) +++ trunk/tools/RosBE/RosBE-Windows/Powershell/options.ps1 [iso-8859-1] Sun May 10 16:58:02 2009 @@ -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
Modified: trunk/tools/RosBE/RosBE-Windows/Root/ChangeLog.txt URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/Root/Chan... ============================================================================== --- trunk/tools/RosBE/RosBE-Windows/Root/ChangeLog.txt [iso-8859-1] (original) +++ trunk/tools/RosBE/RosBE-Windows/Root/ChangeLog.txt [iso-8859-1] Sun May 10 16:58:02 2009 @@ -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