Commit d7ba16de2b6d371d6b00f3a5ef420847b47dc601

Authored by Jianwei Han
1 parent db7b8e3bfa
Exists in master

Refactor

Showing 1 changed file with 43 additions and 43 deletions Side-by-side Diff

modules/people/manifests/hanjianwei/applications.pp
... ... @@ -2,13 +2,14 @@
2 2 notify { "${homebrew::config::cachedir}": }
3 3  
4 4 # Declare all Homebrew packages
5   - $brew_pkgs = [
6   - 'wget',
7   - 'qt5',
8   - 'tmux',
9   - 'vim'
10   - ]
11   - package { $brew_pkgs: }
  5 + package {
  6 + [
  7 + 'wget',
  8 + 'qt5',
  9 + 'tmux',
  10 + 'vim'
  11 + ]:
  12 + }
12 13  
13