Skip to content

Commit

Permalink
Merge pull request #97 from Avivbens/mcfly-under-root-homebrew
Browse files Browse the repository at this point in the history
fix(apps): `mcfly` under the root repo of `HomeBrew`
  • Loading branch information
Avivbens authored May 13, 2024
2 parents 21be24e + 0e3517f commit c9b2076
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/commands/install/config/apps-groups/terminal.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { IAppSetup } from '@models/app-setup.model'
import { BREW_CASK, BREW_HOME, BREW_INSTALL, BREW_TAP, BROW_ALIAS, BROW_INSTALL, BROW_TAP } from '../common-commands'
import { BREW_CASK, BREW_HOME, BREW_INSTALL, BROW_ALIAS, BROW_INSTALL } from '../common-commands'

export const TERMINAL_APPS: Readonly<IAppSetup[]> = [
{
Expand All @@ -24,8 +24,8 @@ export const TERMINAL_APPS: Readonly<IAppSetup[]> = [
group: 'terminal',
tags: ['productivity'],
openUrl: () => BREW_HOME('cantino/mcfly/mcfly'),
commands: () => [BREW_TAP('cantino/mcfly'), BREW_INSTALL('cantino/mcfly/mcfly')],
fallbackCommands: () => [BROW_TAP('cantino/mcfly'), BROW_INSTALL('cantino/mcfly/mcfly')],
commands: () => [BREW_INSTALL('mcfly')],
fallbackCommands: () => [BROW_INSTALL('mcfly')],
},
{
name: 'Bat',
Expand Down

0 comments on commit c9b2076

Please sign in to comment.