Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
I noticed in my heroku build log that there's a bunch of `apt-get` warnings like this: ``` W: --force-yes is deprecated, use one of the options starting with --allow instead. ``` It looks like this line is the one responsible: https://github.com/jontewks/puppeteer-heroku-buildpack/blob/22c5b5960775a5befb89e8b9a1014bc8c1187e3f/bin/compile#L56 According to the [`apt-get` man page](https://manpages.debian.org/stretch/apt/apt-get.8.en.html), we can use `--allow-downgrades --allow-remove-essential --allow-change-held-packages` instead. Fixes #29
- Loading branch information