Skip to content

Commit

Permalink
Fix: syntax error in library file
Browse files Browse the repository at this point in the history
  • Loading branch information
red-stripe committed Mar 29, 2018
1 parent cc91317 commit 270a1fe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cookbooks/kicad/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
license 'GNU GPLv3'
description 'Installs/Configures kicad'
long_description 'Installs/Configures kicad'
version '0.1.3'
version '0.1.4'
chef_version '>= 12.1' if respond_to?(:chef_version)

# The `issues_url` points to the location where issues for this cookbook are
Expand Down
4 changes: 2 additions & 2 deletions cookbooks/kicad/recipes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@
to '/opt/kicad-libraries/digikey-kicad-library/digikey-symbols'
end

template '/etc/guest-session/skel/.config/kicad/fp_lib_table' do
source 'fp_lib_table.erb'
template '/etc/guest-session/skel/.config/kicad/fp-lib-table' do
source 'fp-lib-table.erb'
owner 'root'
group 'root'
mode '0644'
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion cookbooks/kicad/test/smoke/default/default_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
its('mode') { should cmp '0644' }
end

describe file('/etc/guest-session/skel/.config/kicad/fp_lib_table') do
describe file('/etc/guest-session/skel/.config/kicad/fp-lib-table') do
it { should exist }
it { should be_file }
its('mode') { should cmp '0644' }
Expand Down

0 comments on commit 270a1fe

Please sign in to comment.