mirror of https://github.com/axmolengine/axmol.git
12 lines
168 B
Bash
12 lines
168 B
Bash
|
#!/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
|