From 4a34336208f38acc3f3285812ac74d23a27a7a88 Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Wed, 30 Jul 2025 15:21:37 -0600 Subject: [PATCH] Curl plist.h --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 015b0c4..fb66914 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,9 @@ jobs: - name: Install libplist run: | - brew install libplist + brew install libplist && \ + mkdir -p /usr/local/include/plist && \ + wget -O /usr/local/include/plist/plist.h https://raw.githubusercontent.com/libimobiledevice/libplist/refs/heads/master/include/plist/plist.h - name: Cache Cargo uses: actions/cache@v4 @@ -72,7 +74,10 @@ jobs: - uses: actions/checkout@v4 - name: Install build dependencies - run: sudo apt-get update && sudo apt-get install -y build-essential cmake libplist + run: | + sudo apt-get update && sudo apt-get install -y build-essential cmake libplist && \ + mkdir -p /usr/local/include/plist && \ + wget -O /usr/local/include/plist/plist.h https://raw.githubusercontent.com/libimobiledevice/libplist/refs/heads/master/include/plist/plist.h - name: Install just run: |