From: Pierre Ratinaud Date: Mon, 15 Sep 2014 15:30:10 +0000 (+0200) Subject: ... X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=commitdiff_plain;h=5ab9926c420f2cf66ac8e0475412c368ebf485e2;hp=60192e229cbe0a71035348899f38d745a8a10380 ... --- 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():