File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 50
50
BLANK_LINE = ""
51
51
52
52
_program_name = 'compareModel'
53
- _class_name = 'model_diff '
54
- __logger = PlatformLogger ('wlsdeploy.model_diff ' )
53
+ _class_name = 'compare_model '
54
+ __logger = PlatformLogger ('wlsdeploy.compare_model ' )
55
55
56
56
__required_arguments = [
57
57
CommandLineArgUtil .ORACLE_HOME_SWITCH
@@ -595,7 +595,7 @@ def main():
595
595
file_name = None
596
596
if len (compare_msgs ) > 0 :
597
597
try :
598
- file_name = _outputdir + '/model_diff_stdout '
598
+ file_name = _outputdir + '/compare_model_stdout '
599
599
fos = JFileOutputStream (file_name , False )
600
600
writer = JPrintWriter (fos , True )
601
601
writer .println (BLANK_LINE )
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ ECHO -oracle_home ^<oracle_home^>
68
68
ECHO [-output_dir ^ < output_dir^ > write the outputs to the directory specified]
69
69
ECHO [ diffed_model.json - json output of the differences between the models]
70
70
ECHO [ diffed_model.yaml - yaml output of the differences between the models]
71
- ECHO [ model_diff_stdout - stdout of the tool compareModel ]
71
+ ECHO [ compare_model_stdout - stdout of the tool compareModel ]
72
72
ECHO [-variable_file ^ < variable file^ > variable file used for macro substitution]
73
73
ECHO ^ < new model^ > ^ < old model^ > Must be the last two arguments and must be same extensions (yaml or json)
74
74
ECHO .
Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ usage() {
35
35
echo " [-output_dir <output_dir> write the outputs to the directory specified]"
36
36
echo " [ diffed_model.json - json output of the differences between the models]"
37
37
echo " [ diffed_model.yaml - yaml output of the differences between the models]"
38
- echo " [ model_diff_stdout - stdout of the tool compareModel ]"
38
+ echo " [ compare_model_stdout - stdout of the tool compareModel ]"
39
39
echo " [-variable_file <variable file> variable file used for macro substitution]"
40
40
echo " <new model> <old model> Must be the last two arguments and must be same extensions (yaml or json)"
41
41
echo " "
42
42
}
43
43
44
- WLSDEPLOY_PROGRAM_NAME=" modelDiff " ; export WLSDEPLOY_PROGRAM_NAME
44
+ WLSDEPLOY_PROGRAM_NAME=" compareModel " ; export WLSDEPLOY_PROGRAM_NAME
45
45
46
46
scriptName=` basename $0 `
47
47
scriptPath=$( dirname " $0 " )
Original file line number Diff line number Diff line change @@ -283,4 +283,4 @@ Comparing the new and old models:
283
283
284
284
diffed_model.json
285
285
diffed_model.yaml
286
- model_diff_stdout
286
+ compare_model_stdout
You can’t perform that action at this time.
0 commit comments