microsoft / msopentech-tools-for-intellij

Plugin for easy and fast development to enable developers of Android Apps to connect to Office 365 services and Azure Mobile Services, and developers of Java middleware to connect to Azure compute services
Apache License 2.0
28 stars 34 forks source link

copy task in .startup.cmd fails for single files #368

Open lehneres opened 9 years ago

lehneres commented 9 years ago

for deploying a *.war file, in .startup.cmd following command is included:

if not "%SERVER_APPS_LOCATION%" == "\%ROLENAME%" if exist "some.war"\*  ....

This command does not copy some.war because \* searches for an folder descending from some.war. The correct command would be

if not "%SERVER_APPS_LOCATION%" == "\%ROLENAME%" if exist "some.war"  ....

simply without the \*