From 0c754b7d509c60a2a257e7cda647dcb2b58cda30 Mon Sep 17 00:00:00 2001 From: Ronan Le Martret Date: Thu, 24 Oct 2013 09:04:42 +0200 Subject: [PATCH] - remove update_proto_project. --- tools/update_proto_project.py | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100755 tools/update_proto_project.py diff --git a/tools/update_proto_project.py b/tools/update_proto_project.py deleted file mode 100755 index 8f4fb6f..0000000 --- a/tools/update_proto_project.py +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/python - -# -# Copyright 2013, Intel Inc. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; version 2 of the License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Library General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# native -''' -Created on 01 jui. 2013 - -@author: ronan@fridu.net -''' - - -import sys -import os - -try: - import git -except: - print "please install python-GitPython" - sys.exit( 1 ) - -repo = git.Repo( "wrt-bare" ) -print "repo.bare", repo.bare - -print "repo.tree( \"master\" )", repo.tree( "master" ), " ", repo.tree( "master" ).name - -print -- 2.7.4