From 5ab9926c420f2cf66ac8e0475412c368ebf485e2 Mon Sep 17 00:00:00 2001 From: Pierre Ratinaud Date: Mon, 15 Sep 2014 17:30:10 +0200 Subject: [PATCH] ... --- checkinstall.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/checkinstall.py b/checkinstall.py index 1152290..365f505 100644 --- a/checkinstall.py +++ b/checkinstall.py @@ -100,15 +100,15 @@ def FindRPAthWin32(): if progpaths != [] : for progpath in progpaths : rpath = os.path.join(progpath, "R") - if os.path.exists(rpath) : - for amj in range(2,6) : - for i in range(0,50): - for j in range(0,50): - for poss in ['', 'i386', 'x64'] : - path=os.path.join(rpath,"R-3."+str(i)+"."+str(j),'bin',poss,'R.exe') - print path - if os.path.exists(path): - BestPath=path + if os.path.exists(rpath) : + for maj in range(2,4) : + for i in range(0,30): + for j in range(0,20): + for poss in ['', 'i386', 'x64'] : + path=os.path.join(rpath,"R-%i.%i.%i" % (maj, i, j),'bin',poss,'R.exe') + print path + if os.path.exists(path): + BestPath=path return BestPath def FindRPathNix(): -- 2.7.4