Skip to content

Commit 4ad4e5c

Browse files
committed
Fixed Layout/LineLength: Line is too long. [122/120]
1 parent 6f06c46 commit 4ad4e5c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

_gem/lib/go_gem/rake_task.rb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,11 @@ def self.build_env_vars
8181
ldflags << " -undefined dynamic_lookup"
8282
end
8383

84-
cflags = "#{RbConfig::CONFIG["CFLAGS"]} -I#{RbConfig::CONFIG["rubyarchhdrdir"]} -I#{RbConfig::CONFIG["rubyhdrdir"]}"
84+
cflags = [
85+
RbConfig::CONFIG["CFLAGS"],
86+
"-I#{RbConfig::CONFIG["rubyarchhdrdir"]}",
87+
"-I#{RbConfig::CONFIG["rubyhdrdir"]}",
88+
].join(" ")
8589

8690
# FIXME: Workaround for GitHub Actions
8791
if ENV["GITHUB_ACTIONS"]

0 commit comments

Comments
 (0)