summaryrefslogtreecommitdiff
path: root/bin/updatedb.sh
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-08-28 19:24:03 +0200
committerAleksander Machniak <alec@alec.pl>2014-08-28 19:24:03 +0200
commit29c24e647cb4c4a0928382a9ab2964980898562b (patch)
tree72d802a41d7acee8797c4c8f7318c7ceaa24ce5e /bin/updatedb.sh
parenta98a4f8bb56eacffff1765ff09dd29af26e5fc12 (diff)
Get rid of DIRECTORY_SEPARATOR for consistency
Diffstat (limited to 'bin/updatedb.sh')
-rwxr-xr-xbin/updatedb.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/updatedb.sh b/bin/updatedb.sh
index daee6e835..964bc184c 100755
--- a/bin/updatedb.sh
+++ b/bin/updatedb.sh
@@ -116,7 +116,7 @@ if (empty($version)) {
$version = 2012080700;
}
-$dir = $opts['dir'] . DIRECTORY_SEPARATOR . $DB->db_provider;
+$dir = $opts['dir'] . '/' . $DB->db_provider;
if (!file_exists($dir)) {
rcube::raise_error("DDL Upgrade files for " . $DB->db_provider . " driver not found.", false, true);
}
@@ -133,7 +133,7 @@ sort($result, SORT_NUMERIC);
foreach ($result as $v) {
echo "Updating database schema ($v)... ";
- $error = update_db_schema($opts['package'], $v, $dir . DIRECTORY_SEPARATOR . "$v.sql");
+ $error = update_db_schema($opts['package'], $v, "$dir/$v.sql");
if ($error) {
echo "[FAILED]\n";