diff --git a/abra b/abra index 115e3e1..36beb19 100755 --- a/abra +++ b/abra @@ -330,10 +330,11 @@ require_app_latest() { APP_DIR="$ABRA_DIR/apps/$APP" if [ ! -d "$APP_DIR" ]; then - warning "'$APP' not found, fetching via git.." - if ! git clone "$GIT_URL/$APP.git" "$ABRA_DIR/apps/$APP"; then - error "Could not retrieve '$APP', this app doesn't exist?" + warning "The app type '$APP' was not found, fetching via Git" + if ! git clone "$GIT_URL/$APP.git" "$ABRA_DIR/apps/$APP" > /dev/null 2>&1 ; then + error "Could not retrieve app type '$APP', this app type doesn't exist?" fi + success "Fetched app configuration via Git" fi }