From c0f8534c436f1c68159cc861fc13e738466361c8 Mon Sep 17 00:00:00 2001 From: Jared Hancock <jared@osticket.com> Date: Mon, 19 Aug 2013 21:19:59 +0000 Subject: [PATCH] Add files new to 1.7.1 to the download package * web.config * pages/{.htaccess,index.php} Fixes #667 --- setup/cli/package.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup/cli/package.php b/setup/cli/package.php index f4c485b9a..45fd51770 100755 --- a/setup/cli/package.php +++ b/setup/cli/package.php @@ -84,13 +84,15 @@ mkdir($stage_path . '/upload'); # Load the root directory files package("*.php", 'upload/'); +package("web.config", 'upload/'); # Load the client interface foreach (array('assets','css','images','js') as $dir) package("$dir/*", "upload/$dir", -1, "*less"); -# Load API +# Load API and pages package('api/{,.}*', 'upload/api'); +package('pages/{,.}*', 'upload/pages'); # Load the knowledgebase package("kb/*.php", "upload/kb"); -- GitLab