remove -d from cp for osx compat.

This commit is contained in:
cltbld 2004-10-19 19:52:03 +00:00
Родитель 68fc82c756
Коммит 6ef64e0229
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -651,7 +651,7 @@ sub main {
if ($cachebuild) {
# remove saved builds older than a week and save current build
TinderUtils::run_shell_command "find $mozilla_build_dir -type d -name \"200*-*\" -prune -mtime +7 -print | xargs rm -rf";
TinderUtils::run_shell_command "cp -rdpf $upload_directory $mozilla_build_dir/$datestamp";
TinderUtils::run_shell_command "cp -rpf $upload_directory $mozilla_build_dir/$datestamp";
unlink "last-built";
open BLAH, ">last-built";