Skip to content

Commit

Permalink
Fix yml files for CS 430
Browse files Browse the repository at this point in the history
Fix up a few syntax errors that were missed during the review
  • Loading branch information
kylelaker committed Feb 26, 2019
1 parent bc55fd3 commit 3e93765
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion local.yml
Expand Up @@ -14,4 +14,4 @@
- { role: jgrasp, tags: ["cs149"] }
- { role: finch, tags: ["cs101"] }
- { role: y86, tags: ["cs261"] }
- { role: programming-languages, tags: ["cs430"] }
- { role: programming-langs, tags: ["cs430"] }
6 changes: 3 additions & 3 deletions roles/programming-langs/tasks/main.yml
Expand Up @@ -3,16 +3,16 @@

- name: Install Ruby packages
apt:
name: {{ ruby_packages }}
name: "{{ ruby_packages }}"
state: latest

- name: Install Haskell packages
apt:
name: {{ haskell_packages }}
name: "{{ haskell_packages }}"
state: latest

- name: Install Prolog packages
apt:
name: {{ prolog_packages }}
name: "{{ prolog_packages }}"
state: latest

0 comments on commit 3e93765

Please sign in to comment.