Skip to content

Commit 1756d25

Browse files
authored
Merge pull request #238 from oracle/windowscmdfix
Fix command script error in widnows
2 parents 59c9783 + 703f4b9 commit 1756d25

7 files changed

+7
-7
lines changed

installer/src/main/bin/createDomain.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ IF NOT "%~1" == "" (
152152
)
153153

154154
@rem Default domain type if not specified
155-
IF "%DOMAIN_TYPE%"=="" SET DOMAIN_TYPE="WLS"
155+
IF "%DOMAIN_TYPE%"=="" SET DOMAIN_TYPE=WLS
156156

157157

158158
@rem

installer/src/main/bin/deployApps.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ IF NOT "%~1" == "" (
150150
)
151151

152152
@rem Default domain type if not specified
153-
IF "%DOMAIN_TYPE%"=="" SET DOMAIN_TYPE="WLS"
153+
IF "%DOMAIN_TYPE%"=="" SET DOMAIN_TYPE=WLS
154154

155155
@rem
156156
@rem Validate the JVM version based on whether or not the user asked us to use encryption

installer/src/main/bin/discoverDomain.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ IF NOT "%~1" == "" (
159159
)
160160

161161
@rem Default domain type if not specified
162-
IF "%DOMAIN_TYPE%"=="" SET DOMAIN_TYPE="WLS"
162+
IF "%DOMAIN_TYPE%"=="" SET DOMAIN_TYPE=WLS
163163

164164
@rem
165165
@rem Check for values of required arguments for this script to continue.

installer/src/main/bin/encryptModel.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ IF NOT "%~1" == "" (
168168

169169

170170
@rem Default domain type if not specified
171-
IF "%DOMAIN_TYPE%"=="" SET DOMAIN_TYPE="WLS"
171+
IF "%DOMAIN_TYPE%"=="" SET DOMAIN_TYPE=WLS
172172

173173
@rem
174174
@rem Check for values of required arguments for this script to continue.

installer/src/main/bin/injectVariables.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ IF NOT "%~1" == "" (
162162
)
163163

164164
@rem Default domain type if not specified
165-
IF "%DOMAIN_TYPE%"=="" SET DOMAIN_TYPE="WLS"
165+
IF "%DOMAIN_TYPE%"=="" SET DOMAIN_TYPE=WLS
166166

167167
@rem
168168
@rem Check for values of required arguments for this script to continue.

installer/src/main/bin/updateDomain.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ IF NOT "%~1" == "" (
150150
)
151151

152152
@rem Default domain type if not specified
153-
IF "%DOMAIN_TYPE%"=="" SET DOMAIN_TYPE="WLS"
153+
IF "%DOMAIN_TYPE%"=="" SET DOMAIN_TYPE=WLS
154154

155155
@rem
156156
@rem Validate the JVM version based on whether or not the user asked us to use encryption

installer/src/main/bin/validateModel.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ IF NOT "%~1" == "" (
158158
)
159159

160160
@rem Default domain type if not specified
161-
IF "%DOMAIN_TYPE%"=="" SET DOMAIN_TYPE="WLS"
161+
IF "%DOMAIN_TYPE%"=="" SET DOMAIN_TYPE=WLS
162162

163163
@rem
164164
@rem Check for values of required arguments for this script to continue.

0 commit comments

Comments
 (0)