mirror of
https://github.com/reactos/RosBE.git
synced 2024-11-27 05:10:27 +00:00
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:
parent
8755f4bf64
commit
dd0b7eacd0
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user