mirror of https://github.com/BOINC/boinc.git
33 lines
871 B
Python
Executable File
33 lines
871 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# $Id$
|
|
|
|
'''
|
|
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, 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!")
|
|
|
|
print "Upgrading files... "
|
|
|
|
options.install_method = 'copy'
|
|
init()
|
|
install_boinc_files(boinc_project_path.PROGRAM_PARENT_DIR)
|
|
|
|
print "Upgrading files... done"
|
|
print
|
|
# print "Run `start' to resume BOINC."
|
|
|
|
if os.system(os.path.join(boinc_project_path.PROGRAM_PARENT_DIR,'bin/start')):
|
|
raise SystemExit("Couldn't start BOINC!")
|