Skip to content

Commit 5a31983

Browse files
committed
refactor: setup配下にセットアップスクリプトを移動
1 parent e54e627 commit 5a31983

9 files changed

Lines changed: 16 additions & 16 deletions

File tree

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ else
1111
git clone https://github.com/dev-satoshi/dotfiles "$INSTALL_DIR"
1212
fi
1313

14-
sh "$INSTALL_DIR/scripts/setup.sh"
14+
sh "$INSTALL_DIR/scripts/setup/setup.sh"

scripts/setup.sh

Lines changed: 0 additions & 15 deletions
This file was deleted.

scripts/setup/setup.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/usr/bin/env zsh
2+
set -euo pipefail
3+
4+
echo "「dotfiles」のセットアップを開始しました"
5+
6+
INSTALL_DIR="$HOME/dotfiles"
7+
8+
sh "$INSTALL_DIR/scripts/setup/homebrew_setup.sh"
9+
sh "$INSTALL_DIR/scripts/setup/asdf_setup.sh"
10+
sh "$INSTALL_DIR/scripts/setup/vscode_setup.sh"
11+
sh "$INSTALL_DIR/scripts/setup/xcode_setup.sh"
12+
sh "$INSTALL_DIR/scripts/setup/android_setup.sh"
13+
sh "$INSTALL_DIR/scripts/setup/link_dotfiles.sh"
14+
15+
echo "「dotfiles」のセットアップが完了しました"

0 commit comments

Comments
 (0)