sous-chefs / language-chef

Development repository for the language-chef plugin for the Atom text editor
https://atom.io/packages/language-chef
Apache License 2.0
17 stars 9 forks source link

Fixes registry_key #9

Closed spuder closed 8 years ago

spuder commented 8 years ago

Fixes issue #8

spuder commented 8 years ago

Before pull request

registry_key 'HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionname_of_registry_key' do
  values [{:name => 'NewRegistryKeyValue', :type => :string, :data => 'C:WindowsSystem32file_name.bmp'}]
  action :create
end

after fix

registry_key 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\name_of_registry_key' do
  values [{:name => 'NewRegistryKeyValue', :type => :string, :data => 'C:\Windows\System32\file_name.bmp'}]
  action :create
end
darron commented 8 years ago

LGTM - thanks for the PR!

lock[bot] commented 5 years ago

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.