diff options
author | Jean-Sebastien Paquet <paquet@cadwork.ca> | 2021-06-19 08:52:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-19 13:52:34 +0100 |
commit | 8dc036c2e49f51a8dc1721ac8e84d7ec1c873f1e (patch) | |
tree | 8166c36bd18371dcdbbc0c1f6750bd82895252fd /Vagrantfile | |
parent | 37fba09021fe094ea4daf0813626b1b6a201c8c0 (diff) |
Upgrades Vagrant box to Debian 10 to fix Docker build error on Debian 9. (#13236)
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile index adb93a3cee..8125b05890 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -6,7 +6,7 @@ Vagrant.configure(2) do |config| config.vm.define "qmk_firmware" # VMware/Virtualbox ( and also Hyperv/Parallels) 64 bit - config.vm.box = "generic/debian9" + config.vm.box = "generic/debian10" config.vm.synced_folder '.', '/vagrant' |