# Initialize
function inception_init {
(
- cd $DIRNAME
+ cd $DIRNAME &> /dev/null
echo "Initializing submodules..."
$GIT submodule sync --recursive
#echo "Please manually verify dotfiles version and tag from the above output."
#echo "If everything is fine, proceed running this command again with the 'load' parameter."
- cd -
+ #cd -
}
# Load
function inception_load {
(
- cd $DIRNAME
+ cd $DIRNAME &> /dev/null
BUNDLE="$3"
DEPENDENCIES="$4"