Suppress output of clone and do better logging
Dieser Commit ist enthalten in:
7
abra
7
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
|
||||
}
|
||||
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren