diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-10-27 12:59:28 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-10-27 12:59:28 +0200 |
commit | 0c40a061e4925181101196d379137fb020924980 (patch) | |
tree | 85c5068f51d624852027109a5f580362e81baed1 /tests/preseed-config.php | |
parent | 9317039e0c664e78069b2ec2b3d11005aeca9103 (diff) | |
download | nextcloud-server-0c40a061e4925181101196d379137fb020924980.tar.gz nextcloud-server-0c40a061e4925181101196d379137fb020924980.zip |
fix paths in preeseed-config.php
Diffstat (limited to 'tests/preseed-config.php')
-rw-r--r-- | tests/preseed-config.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/preseed-config.php b/tests/preseed-config.php index fbf60ad2e28..7eadccbe769 100644 --- a/tests/preseed-config.php +++ b/tests/preseed-config.php @@ -5,13 +5,13 @@ $CONFIG = array ( array ( 0 => array ( - 'path' => '/home/thomas/Development/owncloud/core/apps', + 'path' => OC::$SERVERROOT.'/apps', 'url' => '/apps', 'writable' => false, ), 1 => array ( - 'path' => '/home/thomas/Development/owncloud/core/apps2', + 'path' => OC::$SERVERROOT.'/apps2', 'url' => '/apps2', 'writable' => false, ) |