We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 937d2da + 8fe902e commit f4ce686Copy full SHA for f4ce686
2 files changed
scripts/setup.sh
@@ -8,4 +8,5 @@ INSTALL_DIR="$HOME/dotfiles"
8
sh "$INSTALL_DIR/scripts/homebrew_setup.sh"
9
sh "$INSTALL_DIR/scripts/asdf_setup.sh"
10
sh "$INSTALL_DIR/scripts/vscode_setup.sh"
11
+sh "$INSTALL_DIR/scripts/xcode_setup.sh"
12
echo "「dotfiles」のセットアップが完了しました"
scripts/xcode_setup.sh
@@ -0,0 +1,12 @@
1
+#!/usr/bin/env zsh
2
+set -euo pipefail
3
+
4
+echo "「Xcode」のセットアップを開始しました"
5
6
+# podのインストール
7
+gem install cocoapods
+# xcodebuildのライセンスを受諾
+yes | sudo xcodebuild -license accept || true
+echo "「Xcode」のセットアップが完了しました"
0 commit comments