You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2012/09/08 09:53:32 UTC

ios commit: Removed unused code from bin/diagnose_project (so it can run out of the bin folder)

Updated Branches:
  refs/heads/master 21d285d7a -> cbee723dd


Removed unused code from bin/diagnose_project (so it can run out of the bin folder)


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/commit/cbee723d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/tree/cbee723d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/diff/cbee723d

Branch: refs/heads/master
Commit: cbee723dd425909cdf15d7c5f3283b43bd2bb3c7
Parents: 21d285d
Author: Shazron Abdullah <sh...@apache.org>
Authored: Sat Sep 8 00:53:17 2012 -0700
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Sat Sep 8 00:53:17 2012 -0700

----------------------------------------------------------------------
 bin/diagnose_project |   12 ------------
 1 files changed, 0 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/cbee723d/bin/diagnose_project
----------------------------------------------------------------------
diff --git a/bin/diagnose_project b/bin/diagnose_project
index 9f9558a..810bb49 100755
--- a/bin/diagnose_project
+++ b/bin/diagnose_project
@@ -20,13 +20,6 @@ def Usage():
 def AbsParentPath(path):
   return os.path.abspath(os.path.join(path, os.path.pardir))
 
-def AbsFrameworkPath(argv0):
-  script_path = argv0
-  # This can happen if the script's dir is in the user's PATH
-  if not os.path.exists(script_path):
-    raise Exception('Could not locale framework directory.')
-  return AbsParentPath(AbsParentPath(script_path))
-
 def AbsProjectPath(relative_path):
   # Do an extra abspath here to strip off trailing / if present.
   project_path = os.path.abspath(relative_path)
@@ -65,12 +58,8 @@ def main(argv):
 	if len(argv) != 2:
 		Usage()
 
-	framework_path = AbsFrameworkPath(argv[0])
 	project_path = AbsProjectPath(argv[1])
-
 	parent_project_path = AbsParentPath(project_path)
-	cordova_lib_xcode_path = os.path.join(framework_path, 'CordovaLib', 'CordovaLib.xcodeproj')
-	subproject_path = os.path.relpath(cordova_lib_xcode_path, parent_project_path)
 
 	projPbx = os.path.join(project_path, 'project.pbxproj')
 
@@ -123,7 +112,6 @@ def main(argv):
 	print "\n\n--------------------------------------------------------------------------------"
 	print "Inspecting your CordovaLib's Build Settings...\n"
 
-	usesXcodeVariable = False
 	cdvlibPath = None
 	cdvlibProjName = 'CordovaLib.xcodeproj'