Skip to content

Commit

Permalink
refactor, wip: force verbose output during install
Browse files Browse the repository at this point in the history
  • Loading branch information
EagleoutIce committed Sep 15, 2023
1 parent 8cf9ed4 commit eac8d6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/r-bridge/shell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ export class RShell {
resetOnNewData: true
}, () => {
// the else branch is a cheesy way to work even if the package is already installed!
this.sendCommand(`install.packages(${ts2r(packageName)},repos="https://cloud.r-project.org/",quiet=FALSE,lib=temp)`)
this.sendCommand(`install.packages(${ts2r(packageName)},repos="https://cloud.r-project.org/",quiet=FALSE,lib=temp,verbose=TRUE)`)
})
if(autoload) {
this.sendCommand(`library(${ts2r(packageName)},lib.loc=${ts2r(tempdir)})`)
Expand Down

0 comments on commit eac8d6b

Please sign in to comment.