mirror of
https://github.com/tiennm99/fbird.git
synced 2026-06-12 14:12:30 +00:00
12 lines
168 B
Bash
Executable File
Vendored
12 lines
168 B
Bash
Executable File
Vendored
#!/bin/bash
|
|
|
|
if [ -f $HOME/.bashrc ]; then
|
|
source $HOME/.bashrc
|
|
fi
|
|
|
|
if [ -f $HOME/.bash_profile ]; then
|
|
source $HOME/.bash_profile
|
|
fi
|
|
|
|
echo $COCOS_CONSOLE_ROOT
|