Skip to content

Commit afdf246

Browse files
committed
Remove trailing space accidentally introduced in uname machine fallback code
Signed-off-by: Jason Alavaliant <alavaliant@ra09.com>
1 parent 9699958 commit afdf246

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/facter/resolvers/uname.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def build_fact_list(output)
3636
@fact_list[:kernelname],
3737
@fact_list[:kernelversion] = uname_results.map(&:strip)
3838
# uutils/coreutils uname does not implement -p and returns "unknown".
39-
# Fall back to -m (machine), which is the procedure suggested by the
39+
# Fall back to -m (machine), which is the procedure suggested by the
4040
# uutils/coreutils developers.
4141
@fact_list[:processor] = @fact_list[:machine] if @fact_list[:processor] == 'unknown'
4242
else

0 commit comments

Comments
 (0)