Skip to content

Commit

Permalink
Don't install rubocop on windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
doetlingerlukas committed Mar 1, 2020
1 parent 85e2bc6 commit 505ab0f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ Function installGems {

foreach ($g in $gems.gems) {
try {
gem install $g
if ($g -ne "rubocop") {
gem install $g
}
} catch {
Write-Error "Failed installing gem $($g). Exiting now!"
exit
Expand Down
1 change: 1 addition & 0 deletions res/choco.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ common:
- yed
- vlc
- mingw
- msys2
- advanced-ip-scanner
- miktex
- texstudio
Expand Down

0 comments on commit 505ab0f

Please sign in to comment.