From a7cf6c1ff038a14b09d433e969c4e4a186d7b6f1 Mon Sep 17 00:00:00 2001 From: commitay Date: Sat, 7 Oct 2017 22:06:39 +1000 Subject: Cask AbstractArtifact: fix install order --- Library/Homebrew/cask/lib/hbc/artifact/abstract_artifact.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library') diff --git a/Library/Homebrew/cask/lib/hbc/artifact/abstract_artifact.rb b/Library/Homebrew/cask/lib/hbc/artifact/abstract_artifact.rb index 17a778f66..972a51a45 100644 --- a/Library/Homebrew/cask/lib/hbc/artifact/abstract_artifact.rb +++ b/Library/Homebrew/cask/lib/hbc/artifact/abstract_artifact.rb @@ -50,8 +50,8 @@ module Hbc Vst3Plugin, ScreenSaver, ], - Binary, Pkg, + Binary, PostflightBlock, Zap, ].each_with_index.flat_map { |classes, i| [*classes].map { |c| [c, i] } }.to_h -- cgit v1.2.3 From 4fde8f56ce0515a359f817376cd18b5e62f1512b Mon Sep 17 00:00:00 2001 From: commitay Date: Sat, 7 Oct 2017 23:10:59 +1000 Subject: add pkg / binary comment --- Library/Homebrew/cask/lib/hbc/artifact/abstract_artifact.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Library') diff --git a/Library/Homebrew/cask/lib/hbc/artifact/abstract_artifact.rb b/Library/Homebrew/cask/lib/hbc/artifact/abstract_artifact.rb index 972a51a45..f9f736662 100644 --- a/Library/Homebrew/cask/lib/hbc/artifact/abstract_artifact.rb +++ b/Library/Homebrew/cask/lib/hbc/artifact/abstract_artifact.rb @@ -50,6 +50,8 @@ module Hbc Vst3Plugin, ScreenSaver, ], + # `pkg` should be run before `binary`, so + # targets are created prior to linking. Pkg, Binary, PostflightBlock, -- cgit v1.2.3