#!/bin/bash # Load common code . ./internals/_build_common.sh init_common #---------------------------- # Run real update script if [ ! -d "$SCRIPT_LOG_DIR" ]; then echo -e "\"$SCRIPT_LOG_DIR\" folder is missing. Check your config or create it." exit 1 fi echo "Update in progress..." . ./internals/_update_repositories.sh &>"$SCRIPT_LOG_DIR/update-repos.log" echo "Update completed."