*** empty log message ***

svn path=/trunk/boinc/; revision=4164
This commit is contained in:
David Anderson 2004-09-07 20:56:08 +00:00
parent 2797928435
commit e3f186a330
2 changed files with 12 additions and 4 deletions

View File

@ -17110,3 +17110,9 @@ David 7 Sept 2004
client/
whetstone.C
David 7 Sept 2004
- change "upgrade" to query user before overwriting files
tools/
upgrade

View File

@ -3,16 +3,18 @@
# $Id$
'''
This program upgrades the project (created using make_project) with current
source/build files. Useful if you are a BOINC developer or closely following
BOINC development.
This program upgrades the project with current source/build files.
Useful if you are a BOINC developer or closely following BOINC development.
'''
import boinc_path_config
from Boinc import boinc_project_path
from Boinc import boinc_project_path, tools
from Boinc.setup_project import *
import os
if not tools.query_noyes("Update project executables and PHP files (overwrite existing files)"):
raise SystemExit
if os.system(os.path.join(boinc_project_path.PROGRAM_PARENT_DIR,'bin/stop')):
raise SystemExit("Couldn't stop BOINC!")