Skip to content

Commit

Permalink
start
Browse files Browse the repository at this point in the history
* if Tap::TAP_DIRECTORY is uninitialized use HOMEBREW_TAP_DIRECTORY
  • Loading branch information
ParkMyCar committed Aug 27, 2024
1 parent 327bb4f commit 909a5ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/toolchain.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# frozen_string_literal: true

TAP_PATH = (Tap::TAP_DIRECTORY/"MaterializeInc"/"homebrew-crosstools").freeze
TAP_DIR = HOMEBREW_TAP_DIRECTORY || Tap::TAP_DIRECTORY
TAP_PATH = (TAP_DIR/"MaterializeInc"/"homebrew-crosstools").freeze

class Toolchain < Formula
desc "Appease RuboCop; not used"
Expand Down

0 comments on commit 909a5ea

Please sign in to comment.