Skip to content

Commit

Permalink
Fix tag_providers.sh (#28345)
Browse files Browse the repository at this point in the history
to support both https/ssh

(cherry picked from commit 7f9727f)
  • Loading branch information
eladkal authored and ephraimbuddy committed Jan 12, 2023
1 parent b7cf404 commit 8dd1497
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev/provider_packages/tag_providers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ AIRFLOW_SOURCES="$(cd "$(dirname "${BASH_SOURCE[0]}")/../../" && pwd)"

# Check common named remotes for the upstream repo
for remote in origin apache; do
git remote get-url --push "$remote" 2>/dev/null | grep -q git@github.com:apache/airflow && break
git remote get-url --push "$remote" 2>/dev/null | grep -q apache/airflow.git && break
unset remote
done

Expand Down
2 changes: 1 addition & 1 deletion docs/exts/docs_build/spelling_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
from functools import total_ordering
from typing import NamedTuple

from docs.exts.docs_build.code_utils import CONSOLE_WIDTH
from rich.console import Console

from airflow.utils.code_utils import prepare_code_snippet
from docs.exts.docs_build.code_utils import CONSOLE_WIDTH

CURRENT_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__)))
DOCS_DIR = os.path.abspath(os.path.join(CURRENT_DIR, os.pardir, os.pardir))
Expand Down

0 comments on commit 8dd1497

Please sign in to comment.