Skip to content

Commit

Permalink
rename folder with '.' to fix installation on windows
Browse files Browse the repository at this point in the history
see: composer/composer#2824

TODO: DefaultScaffolder.phar needs to be re-generated I guess (But we don't use WindowsAzure...)
  • Loading branch information
nsams committed Dec 15, 2014
1 parent 40d9724 commit 5180b3b
Show file tree
Hide file tree
Showing 12 changed files with 3 additions and 3 deletions.
Expand Up @@ -56,7 +56,7 @@ public function invoke(Phar $phar, $rootPath, $options = array())
$this->log('Applied transforms.');

// Show "to do" message
$contentRoot = realpath($rootPath . '/PhpOnAzure.Web');
$contentRoot = realpath($rootPath . '/PhpOnAzure_Web');
echo "\r\n";
echo "Note: before packaging your application, please copy your application code to $contentRoot";
}
Expand Down
Expand Up @@ -2,7 +2,7 @@
<ServiceDefinition name="PhpOnAzure" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition">
<WebRole name="PhpOnAzure.Web" enableNativeCodeExecution="true">
<Sites>
<Site name="Web" physicalDirectory="./PhpOnAzure.Web">
<Site name="Web" physicalDirectory="./PhpOnAzure_Web">
<Bindings>
<Binding name="Endpoint1" endpointName="HttpEndpoint" />
</Bindings>
Expand All @@ -21,4 +21,4 @@
<ConfigurationSettings>
</ConfigurationSettings>
</WebRole>
</ServiceDefinition>
</ServiceDefinition>

0 comments on commit 5180b3b

Please sign in to comment.