You are viewing a plain text version of this content. The canonical link for it is here.
Posted to npanday-commits@incubator.apache.org by br...@apache.org on 2013/03/11 14:16:25 UTC

svn commit: r1455151 - /incubator/npanday/trunk/plugins/azure-maven-plugin/src/main/java/npanday/plugin/azure/CreateCloudServicePackageMojo.java

Author: brett
Date: Mon Mar 11 14:16:24 2013
New Revision: 1455151

URL: http://svn.apache.org/r1455151
Log:
[NPANDAY-546] correct reference to web role

Previous change ensures it is correctly located in bin/NAME.dll as a file,
but the command line reference should just be the name as CSPACK will
determine whether it is in the subdirectory or not. Most projects will work
either way, but projects still using Hostable Web Core will fail if the
bin directory is included

Modified:
    incubator/npanday/trunk/plugins/azure-maven-plugin/src/main/java/npanday/plugin/azure/CreateCloudServicePackageMojo.java

Modified: incubator/npanday/trunk/plugins/azure-maven-plugin/src/main/java/npanday/plugin/azure/CreateCloudServicePackageMojo.java
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/azure-maven-plugin/src/main/java/npanday/plugin/azure/CreateCloudServicePackageMojo.java?rev=1455151&r1=1455150&r2=1455151&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/azure-maven-plugin/src/main/java/npanday/plugin/azure/CreateCloudServicePackageMojo.java (original)
+++ incubator/npanday/trunk/plugins/azure-maven-plugin/src/main/java/npanday/plugin/azure/CreateCloudServicePackageMojo.java Mon Mar 11 14:16:24 2013
@@ -239,7 +239,7 @@ public class CreateCloudServicePackageMo
                 if ( entryPoint.exists() )
                 {
                     commands.add(
-                        "/role:" + dependencyArtifactId + ";" + roleRoot.getAbsolutePath() + ";" + name
+                        "/role:" + dependencyArtifactId + ";" + roleRoot.getAbsolutePath() + ";" + entryPoint.getName()
                     );
                 }
                 else