mirror of
https://github.com/flatcar/scripts.git
synced 2026-05-10 06:36:11 +02:00
fix(coreos-base/oem-vagrant): Update minimum version to 1.6.0
Commits 24cdca8e and 9d2c0169 added options only in 1.6 and later, breaking compatibility with older versions. Update the minimum version to make the resulting error more obvious. :) The coreos-vagrant project already required 1.6 (although not explicitly, probably should fix that) so most uses probably won't notice.
This commit is contained in:
parent
21e77edce2
commit
124d3809bb
@ -1,8 +1,8 @@
|
||||
# -*- mode: ruby -*-
|
||||
# # vi: set ft=ruby :
|
||||
|
||||
if Vagrant::VERSION < "1.5.0"
|
||||
raise "Need at least vagrant version 1.5.0, please update"
|
||||
if Vagrant::VERSION < "1.6.0"
|
||||
raise "Need at least vagrant version 1.6.0, please update"
|
||||
end
|
||||
|
||||
require_relative 'change_host_name.rb'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user