We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 93a6b6e + f177afa commit be3095eCopy full SHA for be3095e
2 files changed
scripts/homebrew_setup.sh
@@ -14,10 +14,6 @@ fi
14
# パッケージリストを更新
15
brew update
16
17
-# インストール済みのbrewパッケージを書き出す(VSCode関連を除く)
18
-brew bundle dump --force --file=~/dotfiles/homebrew/Brewfile
19
-sed -i '' '/^vscode /d' ~/dotfiles/homebrew/Brewfile
20
-
21
# Brewfileを元にインストール
22
brew bundle --file=~/dotfiles/homebrew/Brewfile
23
scripts/update/homebrew_update.sh
@@ -0,0 +1,13 @@
1
+#!/usr/bin/env zsh
2
+set -euo pipefail
3
+
4
+echo "「Homebrew」のアップデートを開始しました"
5
6
+# パッケージリストを更新
7
+brew update
8
9
+# インストール済みのbrewパッケージを書き出す(VSCode関連を除く)
10
+brew bundle dump --force --file=~/dotfiles/homebrew/Brewfile
11
+sed -i '' '/^vscode /d' ~/dotfiles/homebrew/Brewfile
12
13
+echo "「Homebrew」のアップデートが完了しました"
0 commit comments