diff options
Diffstat (limited to 'install')
-rwxr-xr-x | install | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2,7 +2,7 @@ cd `dirname $0` -git submodule update --init || (echo "Submodule update failed!"; exit 5) +git submodule update --init --recursive || (echo "Submodule update failed!"; exit 5) # Source inst and diff function . ./utils/inst @@ -11,6 +11,10 @@ git submodule update --init || (echo "Submodule update failed!"; exit 5) [ "$1" = "-f" ] && FORCE=true || FORCE=false ################################################################################# +if [ -e /etc/arch-release ] && ask "Archlinux software"; then + source private/arch + archlinux_inst +fi if ask "Install Bashrc"; then inst bashrc ~/.bashrc |