Archiviert
0
0

Suppress output of clone and do better logging

Dieser Commit ist enthalten in:
Luke Murphy
2020-12-29 17:05:30 +01:00
Ursprung fff2fbe819
Commit ebfe7ca4e8

7
abra
Datei anzeigen

@ -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
}