diff --git a/checkin_notes b/checkin_notes index 41175335dd..d01f4d8627 100755 --- a/checkin_notes +++ b/checkin_notes @@ -13470,4 +13470,12 @@ Rom 13 June 2004 stdafx.h lib/ base64.C, .h - util.C \ No newline at end of file + util.C + +Rom 13 June 2004 + - Minor tweaks so you can setup a new project + + py/Boinc/ + setup_project.py + sched/ + start diff --git a/sched/start b/sched/start index 5a709b889d..7db6b764bb 100755 --- a/sched/start +++ b/sched/start @@ -207,8 +207,9 @@ def safe_unlink(filename): def remove_cached_home_page(): path = os.path.join(project_dir, 'html/cache/index.php') - print 'removing '+path - safe_unlink(path) + if os.path.exists(path): + print 'removing ' + path + safe_unlink(path) def redirect(stdout='/dev/null', stderr=None, stdin='/dev/null'): '''