mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Merge revision 1329 and revision 1330 changes:
- Fix script detection of git checkouts. git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1453@1334 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -27,6 +27,10 @@ parser.add_option('-q', '--quiet',
|
||||
# The CEF root directory is the parent directory of _this_ script.
|
||||
cef_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir))
|
||||
|
||||
if not os.path.exists(os.path.join(cef_dir, '.svn')):
|
||||
sys.stdout.write("Not an SVN checkout.\n")
|
||||
sys.exit(0)
|
||||
|
||||
# Retrieve the CEF SVN info.
|
||||
cef_info = get_svn_info(cef_dir)
|
||||
if not options.quiet:
|
||||
|
Reference in New Issue
Block a user