vice: fix RuboCop Style/ConditionalAssignment.

master
Mike McQuaid 2020-03-13 20:59:20 +00:00
parent d8d32c0797
commit bc4e9ade51
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
1 changed files with 3 additions and 3 deletions

View File

@ -41,10 +41,10 @@ class Vice < Formula
"--enable-external-ffmpeg",
]
if build.head?
configure_flags << "--enable-native-gtk3ui"
configure_flags << if build.head?
"--enable-native-gtk3ui"
else
configure_flags << "--enable-sdlui2"
"--enable-sdlui2"
end
system "./autogen.sh"