Skip to content

Commit

Permalink
CI: fix caching of cairo (#3419)
Browse files Browse the repository at this point in the history
I forgot to change the path after moving around the file.
  • Loading branch information
naveen521kk authored Oct 27, 2023
1 parent b7eefca commit b7a8a2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/ci_build_cairo.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

VENV_NAME = "meson-venv"
BUILD_DIR = "build"
INSTALL_PREFIX = Path(__file__).parent.parent / "third_party" / "cairo"
INSTALL_PREFIX = Path(__file__).parent.parent.parent / "third_party" / "cairo"

logging.basicConfig(level=logging.INFO, format="%(asctime)s %(levelname)s %(message)s")
logger = logging.getLogger(__name__)
Expand Down

0 comments on commit b7a8a2d

Please sign in to comment.