diff options
author | thomascube <thomas@roundcube.net> | 2012-03-03 18:36:42 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-03-03 18:36:42 +0000 |
commit | 54d074613fede481758049c445c502acfe0ebe6a (patch) | |
tree | 318ea9e16caaf9906e2fad472ce4a7ee4aa77bb2 /bin | |
parent | 18a28ae3f8fcaf78d5304c2d7dfce3991791239e (diff) |
Copy all skins in installto script (#1488376)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/installto.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/installto.sh b/bin/installto.sh index f3ab2ad6b..eb43b99d4 100755 --- a/bin/installto.sh +++ b/bin/installto.sh @@ -47,7 +47,7 @@ $input = trim(fgets(STDIN)); if (strtolower($input) == 'y') { $err = false; echo "Copying files to target location..."; - foreach (array('program','installer','bin','SQL','plugins','skins/default') as $dir) { + foreach (array('program','installer','bin','SQL','plugins','skins') as $dir) { if (!system("rsync -avC " . INSTALL_PATH . "$dir/* $target_dir/$dir/")) { $err = true; break; |