Skip to content

Commit 73b1f90

Browse files
committed
Run rubocop
1 parent 25e98a0 commit 73b1f90

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib/commands/autofixes/strip_binary_symbols.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ class StripBinarySymbols < EmergeCLI::Commands::GlobalOptions
1212
# Constants
1313
SCRIPT_NAME = 'EmergeTools Strip Binary Symbols'.freeze
1414
ENABLE_USER_SCRIPT_SANDBOXING = 'ENABLE_USER_SCRIPT_SANDBOXING'.freeze
15-
INPUT_FILE = '${DWARF_DSYM_FOLDER_PATH}/${EXECUTABLE_NAME}.app.dSYM/Contents/Resources/DWARF/${EXECUTABLE_NAME}'.freeze
15+
INPUT_FILE = '${DWARF_DSYM_FOLDER_PATH}/${EXECUTABLE_NAME}.app.dSYM/' \
16+
'Contents/Resources/DWARF/${EXECUTABLE_NAME}'.freeze
1617
SCRIPT_CONTENT = %{#!/bin/bash
1718
set -e
1819

test/commands/autofixes/strip_binary_symbols_test.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ module Autofixes
66
class StripBinarySymbolsTest < Minitest::Test
77
SCRIPT_NAME = 'EmergeTools Strip Binary Symbols'.freeze
88
ENABLE_USER_SCRIPT_SANDBOXING = 'ENABLE_USER_SCRIPT_SANDBOXING'.freeze
9-
INPUT_FILE = '${DWARF_DSYM_FOLDER_PATH}/${EXECUTABLE_NAME}.app.dSYM/Contents/Resources/DWARF/${EXECUTABLE_NAME}'.freeze
9+
INPUT_FILE = '${DWARF_DSYM_FOLDER_PATH}/${EXECUTABLE_NAME}.app.dSYM/' \
10+
'Contents/Resources/DWARF/${EXECUTABLE_NAME}'.freeze
1011

1112
def setup
1213
@command = EmergeCLI::Commands::Autofixes::StripBinarySymbols.new

0 commit comments

Comments
 (0)