diff --git a/bin/templates/cordova/build.bat b/bin/templates/cordova/build.bat index 2f317e3b..46e966af 100644 --- a/bin/templates/cordova/build.bat +++ b/bin/templates/cordova/build.bat @@ -5,9 +5,9 @@ :: to you under the Apache License, Version 2.0 (the :: "License"); you may not use this file except in compliance :: with the License. You may obtain a copy of the License at -:: +:: :: http://www.apache.org/licenses/LICENSE-2.0 -:: +:: :: Unless required by applicable law or agreed to in writing, :: software distributed under the License is distributed on an :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY @@ -18,7 +18,7 @@ @ECHO OFF SET script_path="%~dp0build" IF EXIST %script_path% ( - node "%script_path%" %* + node %script_path% %* ) ELSE ( ECHO. ECHO ERROR: Could not find 'build' script in 'cordova' folder, aborting...>&2 diff --git a/bin/templates/cordova/clean.bat b/bin/templates/cordova/clean.bat index fa1f669a..445ef6e1 100644 --- a/bin/templates/cordova/clean.bat +++ b/bin/templates/cordova/clean.bat @@ -5,9 +5,9 @@ :: to you under the Apache License, Version 2.0 (the :: "License"); you may not use this file except in compliance :: with the License. You may obtain a copy of the License at -:: +:: :: http://www.apache.org/licenses/LICENSE-2.0 -:: +:: :: Unless required by applicable law or agreed to in writing, :: software distributed under the License is distributed on an :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY @@ -18,7 +18,7 @@ @ECHO OFF SET script_path="%~dp0clean" IF EXIST %script_path% ( - node "%script_path%" %* + node %script_path% %* ) ELSE ( ECHO. ECHO ERROR: Could not find 'clean' script in 'cordova' folder, aborting...>&2 diff --git a/bin/templates/cordova/log.bat b/bin/templates/cordova/log.bat index 875982f2..4b2b434e 100644 --- a/bin/templates/cordova/log.bat +++ b/bin/templates/cordova/log.bat @@ -5,9 +5,9 @@ :: to you under the Apache License, Version 2.0 (the :: "License"); you may not use this file except in compliance :: with the License. You may obtain a copy of the License at -:: +:: :: http://www.apache.org/licenses/LICENSE-2.0 -:: +:: :: Unless required by applicable law or agreed to in writing, :: software distributed under the License is distributed on an :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY @@ -18,7 +18,7 @@ @ECHO OFF SET script_path="%~dp0log" IF EXIST %script_path% ( - node "%script_path%" %* + node %script_path% %* ) ELSE ( ECHO. ECHO ERROR: Could not find 'log' script in 'cordova' folder, aborting...>&2 diff --git a/bin/templates/cordova/run.bat b/bin/templates/cordova/run.bat index 0aad8535..b0bc28b2 100644 --- a/bin/templates/cordova/run.bat +++ b/bin/templates/cordova/run.bat @@ -5,9 +5,9 @@ :: to you under the Apache License, Version 2.0 (the :: "License"); you may not use this file except in compliance :: with the License. You may obtain a copy of the License at -:: +:: :: http://www.apache.org/licenses/LICENSE-2.0 -:: +:: :: Unless required by applicable law or agreed to in writing, :: software distributed under the License is distributed on an :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY @@ -18,7 +18,7 @@ @ECHO OFF SET script_path="%~dp0run" IF EXIST %script_path% ( - node "%script_path%" %* + node %script_path% %* ) ELSE ( ECHO. ECHO ERROR: Could not find 'run' script in 'cordova' folder, aborting...>&2 diff --git a/bin/templates/cordova/version.bat b/bin/templates/cordova/version.bat index d589002d..3610c17b 100644 --- a/bin/templates/cordova/version.bat +++ b/bin/templates/cordova/version.bat @@ -5,9 +5,9 @@ :: to you under the Apache License, Version 2.0 (the :: "License"); you may not use this file except in compliance :: with the License. You may obtain a copy of the License at -:: +:: :: http://www.apache.org/licenses/LICENSE-2.0 -:: +:: :: Unless required by applicable law or agreed to in writing, :: software distributed under the License is distributed on an :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY @@ -18,7 +18,7 @@ @ECHO OFF SET script_path="%~dp0version" IF EXIST %script_path% ( - node "%script_path%" %* + node %script_path% %* ) ELSE ( ECHO. ECHO ERROR: Could not find 'version' script in 'cordova' folder, aborting...>&2