diff --git a/hubflow-common b/hubflow-common index e27dab882..9205dd519 100644 --- a/hubflow-common +++ b/hubflow-common @@ -354,7 +354,7 @@ hubflow_local_merge_helper() { } hubflow_fetch_latest_changes_from_origin() { - git remote update || die "Unable to get list of latest changes from '$ORIGIN'" + git remote update "$ORIGIN" || die "Unable to get list of latest changes from '$ORIGIN'" git fetch "$ORIGIN" || die "Unable to fetch latest changes from '$ORIGIN'" git fetch --tags || die "Unable to fetch latest tags from '$ORIGIN'" }