From: edd Date: Mon, 25 Jan 2010 18:47:17 +0000 (+0000) Subject: fix another brown bag bug / typo for good measure X-Git-Url: https://git.donarmstrong.com/?p=cran2deb.git;a=commitdiff_plain;h=b927c8876e7714e24547fd229f291891023aa170 fix another brown bag bug / typo for good measure git-svn-id: svn://svn.r-forge.r-project.org/svnroot/cran2deb@300 edb9625f-4e0d-4859-8d74-9fd3b1da38cb --- diff --git a/trunk/exec/get_base_pkgs b/trunk/exec/get_base_pkgs index fb6230d..46de12c 100755 --- a/trunk/exec/get_base_pkgs +++ b/trunk/exec/get_base_pkgs @@ -1,6 +1,6 @@ #!/usr/bin/env r instPkgs <- installed.packages(lib.loc="/usr/lib/R/library") instPkgs <- instPkgs[ instPkgs[,"Priority"] == 'base', ] -for (pkg in rownames(instPkgs())) { +for (pkg in rownames(instPkgs)) { message(pkg) }