Skip to content
Snippets Groups Projects
Commit a8032a3f authored by Jared Hancock's avatar Jared Hancock
Browse files

Don't clean plugins/ folder or config files

Also, if any non-shipped .htaccess files exist, don't clean those either

Fixes #60
parent 84d463af
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,9 @@ class Deployment extends Unpacker {
// Clean everything but include folder first
$this->clean($root, $this->destination, -1,
array($include, "setup/"));
$this->clean("$root/include", $include, -1);
$this->clean("$root/include", $include, -1,
array("ost-config.php","settings.php","plugins/",
"*/.htaccess"));
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment