Skip to content

Commit

Permalink
fix: brewコマンドが正常に動作しない不具合を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
slime-hatena committed Feb 17, 2023
1 parent e00bde0 commit b48af5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fish/conf.d/user_functions.fish
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ end
function brewInstallAll
echo "brewfileに記載されているすべてのパッケージを導入します。"
cat "$HOME/.dotfiles/homebrew/min/Brewfiles_all" >"$HOME/.dotfiles/homebrew/Brewfiles"
cat "$HOME/.dotfiles/homebrew/dev/Brewfiles_all" >"$HOME/.dotfiles/homebrew/Brewfiles"
cat "$HOME/.dotfiles/homebrew/extra/Brewfiles_all" >"$HOME/.dotfiles/homebrew/Brewfiles"
cat "$HOME/.dotfiles/homebrew/dev/Brewfiles_all" >>"$HOME/.dotfiles/homebrew/Brewfiles"
cat "$HOME/.dotfiles/homebrew/extra/Brewfiles_all" >>"$HOME/.dotfiles/homebrew/Brewfiles"
if test (uname) = 'Darwin'
echo "実行環境がMacのため、cask経由でアプリケーションをインストールします。"
cat "$HOME/.dotfiles/homebrew/min/Brewfiles_mac" >>"$HOME/.dotfiles/homebrew/Brewfiles"
Expand Down

0 comments on commit b48af5d

Please sign in to comment.