From 9dd601e321ff5fed3c611f6cdb85344d81756768 Mon Sep 17 00:00:00 2001 From: Stefan Ceriu Date: Tue, 19 Dec 2023 14:09:16 +0200 Subject: [PATCH] Add verbose and debug flags to brew installs --- Tools/Sources/SetupProject.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/Sources/SetupProject.swift b/Tools/Sources/SetupProject.swift index 0b5a56491c..716c0f30ce 100644 --- a/Tools/Sources/SetupProject.swift +++ b/Tools/Sources/SetupProject.swift @@ -19,7 +19,7 @@ struct SetupProject: ParsableCommand { } func brewBundleInstall() throws { - try Utilities.zsh("brew install xcodegen swiftgen swiftformat git-lfs sourcery mint kiliankoe/formulae/swift-outdated localazy/tools/localazy peripheryapp/periphery/periphery") + try Utilities.zsh("brew install --verbose --debug xcodegen swiftgen swiftformat git-lfs sourcery mint kiliankoe/formulae/swift-outdated localazy/tools/localazy peripheryapp/periphery/periphery") if !ci { try Utilities.zsh("brew install swiftlint") }