Skip to content
This repository has been archived by the owner on Sep 18, 2020. It is now read-only.

Commit

Permalink
config.rb: fix incorrect drive_root line
Browse files Browse the repository at this point in the history
A typo in the finalize method caused drive_root to not be set correctly
when drive_root was not explicitly set.
  • Loading branch information
Alexander Pavel committed Jul 31, 2017
1 parent f1eb354 commit 32479e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vagrant-ignition/config.rb
Expand Up @@ -23,7 +23,7 @@ def finalize!
@enabled = false if @enabled == UNSET_VALUE
@path = nil if @path == UNSET_VALUE
@drive_name = "config" if @drive_name == UNSET_VALUE
@drive_root = "./" if @drive_path == UNSET_VALUE
@drive_root = "./" if @drive_root == UNSET_VALUE
@hostname = nil if @hostname == UNSET_VALUE
@ip = nil if @ip == UNSET_VALUE
end
Expand Down

0 comments on commit 32479e4

Please sign in to comment.