diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-03-20 08:22:57 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-03-20 08:22:57 +0000 |
commit | 6df1dffed1e2eef2690444e044c2adb1a9bbca51 (patch) | |
tree | 9004fc1557be02c9ba3f812018342ae0325abe7d /installer/init_var.php | |
parent | 06baa24dd6e8e78df0f29ffcff5a808e134331d8 (diff) |
Do some data normalization so that the install files will have stable
ordering and known values. This way subsequent packaging runs won't
have any differences unless there's a real data change.
Diffstat (limited to 'installer/init_var.php')
-rw-r--r-- | installer/init_var.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/init_var.php b/installer/init_var.php index b1ecf995..f4637016 100644 --- a/installer/init_var.php +++ b/installer/init_var.php @@ -2,7 +2,7 @@ <?php !file_exists(VARPATH . "albums") && mkdir(VARPATH . "albums"); !file_exists(VARPATH . "logs") && mkdir(VARPATH . "logs"); -!file_exists(VARPATH . "uploads") && mkdir(VARPATH . "uploads"); +!file_exists(VARPATH . "modules") && mkdir(VARPATH . "modules"); !file_exists(VARPATH . "resizes") && mkdir(VARPATH . "resizes"); !file_exists(VARPATH . "thumbs") && mkdir(VARPATH . "thumbs"); -!file_exists(VARPATH . "modules") && mkdir(VARPATH . "modules"); +!file_exists(VARPATH . "uploads") && mkdir(VARPATH . "uploads"); |