mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=3564
This commit is contained in:
parent
5a24e46a52
commit
80ecf2632d
|
@ -13470,4 +13470,12 @@ Rom 13 June 2004
|
|||
stdafx.h
|
||||
lib/
|
||||
base64.C, .h
|
||||
util.C
|
||||
util.C
|
||||
|
||||
Rom 13 June 2004
|
||||
- Minor tweaks so you can setup a new project
|
||||
|
||||
py/Boinc/
|
||||
setup_project.py
|
||||
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'):
|
||||
'''
|
||||
|
|
Loading…
Reference in New Issue