diff options
Diffstat (limited to 'BCT')
-rw-r--r-- | BCT/PhoneControlsExtractor/navGraphBuilder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BCT/PhoneControlsExtractor/navGraphBuilder.py b/BCT/PhoneControlsExtractor/navGraphBuilder.py index 7f008fd3..8d72c785 100644 --- a/BCT/PhoneControlsExtractor/navGraphBuilder.py +++ b/BCT/PhoneControlsExtractor/navGraphBuilder.py @@ -93,7 +93,7 @@ def createAppControlsFile(appFile, outputFile, format): def bctAppFile(appFile, outputFile, format):
error = os.system(BCT_PATH + " /heap:splitFields /lib:\"" + WPLIB_PATH + "\" /wpnav /phoneControls:\"" + \
- os.path.splitext(appFile)[0] + ".controls\" \"" + appFile + "\" > nul")
+ os.path.splitext(appFile)[0] + ".controls\" \"" + appFile + "\" > NavigationReport")
if error != 0 or not os.path.exists(os.path.splitext(appFile)[0] + ".bpl"):
return False
return True
|