diff --git a/install.sh b/install.sh index 4a44cc3..ee4eee9 100644 --- a/install.sh +++ b/install.sh @@ -69,20 +69,20 @@ pushd $my_app_dir/opt/goldilocks/lib/node_modules/goldilocks/packages/assets git pull popd - ln -s jquery.com com.jquery mkdir -p jquery.com + ln -s jquery.com com.jquery pushd jquery.com http_get 'https://code.jquery.com/jquery-3.1.1.js' jquery-3.1.1.js popd - ln -s google.com com.google mkdir -p google.com + ln -s google.com com.google pushd google.com http_get 'https://ajax.googleapis.com/ajax/libs/angularjs/1.6.2/angular.min.js' angular.1.6.2.min.js popd - ln -s well-known .well-known mkdir -p well-known + ln -s well-known .well-known pushd well-known ln -snf ../oauth3.org/well-known/oauth3 ./oauth3 popd @@ -96,7 +96,12 @@ popd # source ./installer/my-root.sh echo "Pre-installation to $my_app_dir complete, now installing to $my_root/ ..." -ls $my_app_dir +if [ type -p tree ]; then + #tree -I "node_modules|include|share" $my_app_dir + tree -L 6 -I "include|share|npm" $my_app_dir +else + ls $my_app_dir +fi source ./installer/my-user-my-group.sh echo "User $my_user Group $my_group"