aboutsummaryrefslogtreecommitdiff
path: root/inception
diff options
context:
space:
mode:
Diffstat (limited to 'inception')
-rwxr-xr-xinception18
1 files changed, 15 insertions, 3 deletions
diff --git a/inception b/inception
index d66f38f..a24b0dc 100755
--- a/inception
+++ b/inception
@@ -43,9 +43,21 @@ elif [ "$1" == "load" ]; then
(
cd $DIRNAME
- echo "Loading all dotfiles..."
- ./metadot/metadot load --all
- ./metadot/metadot deps --all
+ BUNDLE="$2"
+ DEPENDENCIES="$3"
+
+ if [ "$BUNDLE" == "--all" ]; then
+ echo "Loading all dotfiles..."
+ ./metadot/metadot load --all
+ ./metadot/metadot deps --all
+ elif [ -z "$BUNDLE" ]; then
+ echo "Loading $BUNDLE dotfiles..."
+ ./metadot/metadot load-bundle $BUNDLE
+
+ if [ "$DEPENDENCIES" == "--deps" ]; then
+ ./metadot/metadot deps-bundle $BUNDLE
+ fi
+ fi
)
echo "Done. Logout and login again to apply all changes."