Skip to content

Commit

Permalink
Replace slash with directory separator
Browse files Browse the repository at this point in the history
- for windows support
  • Loading branch information
AW3i committed Mar 24, 2017
1 parent 9f2ac58 commit 897d3a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AppserverIo/Appserver/Core/GenericDeployment.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ protected function getDatasourceFiles()
$datasourceFiles = array_merge(
$datasourceFiles,
$this->prepareDatasourceFiles(
$this->getDeploymentService()->globDir(AppEnvironmentHelper::getEnvironmentAwareGlobPattern($webappPath, 'META-INF/*-ds'))
$this->getDeploymentService()->globDir(AppEnvironmentHelper::getEnvironmentAwareGlobPattern($webappPath, 'META-INF' . DIRECTORY_SEPARATOR . '*-ds'))
)
);
}
Expand Down

0 comments on commit 897d3a8

Please sign in to comment.