robertzk / lockbox

Bundler-style dependency management for R
MIT License
49 stars 11 forks source link

autoinstall = TRUE doesn't work when previously it has been set to FALSE #122

Open russellpierce opened 7 years ago

russellpierce commented 7 years ago

It appears for local packages, if autoinstall was once set to FALSE, setting it TRUE later has no effect. It may be that lockbox is depending on the fact that if autoinstall is TRUE the file will be missing. This appears to be related to https://github.com/robertzk/lockbox/issues/97 and https://github.com/robertzk/lockbox/issues/99 and in general lockbox giving versions primacy over refs or other considerations (like autoinstall).

peterhurford commented 7 years ago

autoinstall = TRUE doesn't work when previously it has been set to FALSE

if autoinstall was once set to TRUE, setting it FALSE later has no effect

These two are opposite -- the first says that FALSE -> TRUE doesn't work and the second says that TRUE -> FALSE doesn't work. Do they both not work?

russellpierce commented 7 years ago

I corrected my message text. FALSE -> TRUE is what doesn't work. Sorry I got turned around with the booleans.