독립 control plane 구성을 위해 기존 Dart CLI/runtime을 runner 앱 경계로 옮기고, 후속 client/core/root 작업을 같은 마일스톤 task group에 연결한다.
21 lines
371 B
Bash
Executable file
21 lines
371 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Load .zprofile if it exists
|
|
if [ -f ~/.zprofile ]; then
|
|
source ~/.zprofile
|
|
fi
|
|
|
|
# Load .bash_profile if it exists
|
|
if [ -f ~/.bash_profile ]; then
|
|
source ~/.bash_profile
|
|
fi
|
|
|
|
# Load .bashrc if it exists (optional)
|
|
if [ -f ~/.bashrc ]; then
|
|
source ~/.bashrc
|
|
fi
|
|
|
|
# Load .zshrc if it exists (optional)
|
|
if [ -f ~/.zshrc ]; then
|
|
source ~/.zshrc
|
|
fi
|