Skip to content

Commit 13212a6

Browse files
rakillenddsharpe
authored andcommitted
JIRA-WDT-356 Fix exit messages (#527)
1 parent fa2a843 commit 13212a6

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

installer/src/main/bin/createDomain.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@rem **************************************************************************
33
@rem createDomain.cmd
44
@rem
5-
@rem Copyright (c) 2017, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
5+
@rem Copyright (c) 2017, 2020, Oracle Corporation and/or its affiliates. All rights reserved.
66
@rem Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
77
@rem
88
@rem NAME
@@ -279,7 +279,7 @@ ECHO WLST_PROPERTIES = %WLST_PROPERTIES%
279279
SET PY_SCRIPTS_PATH=%WLSDEPLOY_HOME%\lib\python
280280
ECHO %WLST% %PY_SCRIPTS_PATH%\create.py %SCRIPT_ARGS%
281281

282-
"%WLST%" "%PY_SCRIPTS_PATH%\create.py" %SCRIPT_ARGS%
282+
CALL "%WLST%" "%PY_SCRIPTS_PATH%\create.py" %SCRIPT_ARGS%
283283

284284
SET RETURN_CODE=%ERRORLEVEL%
285285
IF "%RETURN_CODE%" == "100" (

installer/src/main/bin/deployApps.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@rem **************************************************************************
33
@rem deployApps.cmd
44
@rem
5-
@rem Copyright (c) 2017, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
5+
@rem Copyright (c) 2017, 2020, Oracle Corporation and/or its affiliates. All rights reserved.
66
@rem Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
77
@rem
88
@rem NAME
@@ -275,7 +275,7 @@ ECHO WLST_PROPERTIES = %WLST_PROPERTIES%
275275
SET PY_SCRIPTS_PATH=%WLSDEPLOY_HOME%\lib\python
276276
ECHO %WLST% %PY_SCRIPTS_PATH%\deploy.py %SCRIPT_ARGS%
277277

278-
"%WLST%" "%PY_SCRIPTS_PATH%\deploy.py" %SCRIPT_ARGS%
278+
CALL "%WLST%" "%PY_SCRIPTS_PATH%\deploy.py" %SCRIPT_ARGS%
279279

280280
SET RETURN_CODE=%ERRORLEVEL%
281281
IF "%RETURN_CODE%" == "103" (

installer/src/main/bin/discoverDomain.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ SET PY_SCRIPTS_PATH=%WLSDEPLOY_HOME%\lib\python
302302

303303
ECHO %WLST% "%PY_SCRIPTS_PATH%\discover.py" %SCRIPT_ARGS%
304304

305-
"%WLST%" "%PY_SCRIPTS_PATH%\discover.py" %SCRIPT_ARGS%
305+
CALL "%WLST%" "%PY_SCRIPTS_PATH%\discover.py" %SCRIPT_ARGS%
306306

307307
SET RETURN_CODE=%ERRORLEVEL%
308308
IF "%RETURN_CODE%" == "100" (

installer/src/main/bin/encryptModel.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@rem **************************************************************************
33
@rem encryptModel.cmd
44
@rem
5-
@rem Copyright (c) 2017, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
5+
@rem Copyright (c) 2017, 2020, Oracle Corporation and/or its affiliates. All rights reserved.
66
@rem Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
77
@rem
88
@rem NAME
@@ -271,7 +271,7 @@ ECHO WLST_PROPERTIES = %WLST_PROPERTIES%
271271
SET PY_SCRIPTS_PATH=%WLSDEPLOY_HOME%\lib\python
272272
ECHO %WLST% %PY_SCRIPTS_PATH%\encrypt.py %SCRIPT_ARGS%
273273

274-
"%WLST%" "%PY_SCRIPTS_PATH%\encrypt.py" %SCRIPT_ARGS%
274+
CALL "%WLST%" "%PY_SCRIPTS_PATH%\encrypt.py" %SCRIPT_ARGS%
275275

276276
SET RETURN_CODE=%ERRORLEVEL%
277277
IF "%RETURN_CODE%" == "100" (

installer/src/main/bin/injectVariables.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@rem **************************************************************************
33
@rem injectVariables.cmd
44
@rem
5-
@rem Copyright (c) 2018, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
5+
@rem Copyright (c) 2018, 2020, Oracle Corporation and/or its affiliates. All rights reserved.
66
@rem Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
77
@rem
88
@rem NAME
@@ -263,7 +263,7 @@ ECHO WLST_PROPERTIES = %WLST_PROPERTIES%
263263
SET PY_SCRIPTS_PATH=%WLSDEPLOY_HOME%\lib\python
264264
ECHO %WLST% %PY_SCRIPTS_PATH%\variable_inject.py %SCRIPT_ARGS%
265265

266-
"%WLST%" "%PY_SCRIPTS_PATH%\variable_inject.py" %SCRIPT_ARGS%
266+
CALL "%WLST%" "%PY_SCRIPTS_PATH%\variable_inject.py" %SCRIPT_ARGS%
267267

268268
SET RETURN_CODE=%ERRORLEVEL%
269269
IF "%RETURN_CODE%" == "100" (

installer/src/main/bin/updateDomain.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@rem **************************************************************************
33
@rem updateDomain.cmd
44
@rem
5-
@rem Copyright (c) 2017, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
5+
@rem Copyright (c) 2017, 2020, Oracle Corporation and/or its affiliates. All rights reserved.
66
@rem Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
77
@rem
88
@rem NAME
@@ -276,7 +276,7 @@ ECHO WLST_PROPERTIES = %WLST_PROPERTIES%
276276
SET PY_SCRIPTS_PATH=%WLSDEPLOY_HOME%\lib\python
277277
ECHO %WLST% %PY_SCRIPTS_PATH%\update.py %SCRIPT_ARGS%
278278

279-
"%WLST%" "%PY_SCRIPTS_PATH%\update.py" %SCRIPT_ARGS%
279+
CALL "%WLST%" "%PY_SCRIPTS_PATH%\update.py" %SCRIPT_ARGS%
280280

281281
SET RETURN_CODE=%ERRORLEVEL%
282282
IF "%RETURN_CODE%" == "103" (

0 commit comments

Comments
 (0)