move bootstrapping to resources.

This commit is contained in:
Ivan Malison 2014-04-26 19:20:00 -07:00
parent 48f8a10926
commit 47d44d2c09
3 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
cd `dirname $BASH_SOURCE` && source bootstrapping.sh cd `dirname $BASH_SOURCE` && source resources/bootstrapping.sh
DOTFILES_DIRECTORY="$(dotfiles_abspath)/dotfiles" DOTFILES_DIRECTORY="$(dotfiles_abspath)/dotfiles"
echo $DOTFILES_DIRECTORY echo $DOTFILES_DIRECTORY

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
cd `dirname $BASH_SOURCE` && source bootstrapping.sh cd `dirname $BASH_SOURCE` && source resources/bootstrapping.sh
source dotfiles/lib/shellrc/functions.sh source dotfiles/lib/shellrc/functions.sh
case `uname` in case `uname` in
'Darwin') 'Darwin')