From: edd Date: Mon, 25 Jan 2010 18:43:46 +0000 (+0000) Subject: fix brown bag bug / typo X-Git-Url: https://git.donarmstrong.com/?p=cran2deb.git;a=commitdiff_plain;h=9b92aa399a8d314f14a20681cbfbec8b374c7688 fix brown bag bug / typo git-svn-id: svn://svn.r-forge.r-project.org/svnroot/cran2deb@299 edb9625f-4e0d-4859-8d74-9fd3b1da38cb --- diff --git a/trunk/exec/get_base_pkgs b/trunk/exec/get_base_pkgs index 9ec4d29..fb6230d 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(installed.packages())) { +for (pkg in rownames(instPkgs())) { message(pkg) }