Skip to content

Commit

Permalink
Merge pull request #11 from RyeMutt/master
Browse files Browse the repository at this point in the history
Fix broken application of patches that slipped in from last commit
  • Loading branch information
bennettgoble authored Aug 10, 2024
2 parents a65a4d7 + e0fdad7 commit 97594e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-cmd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ apply_patch()
local patch="$1"
local path="$2"
echo "Applying $patch..."
git apply --check --directory="$path" "$patch" || git apply --directory="$path" "$patch"
git apply --check --reverse --directory="$path" "$patch" || git apply --directory="$path" "$patch"
}

apply_patch "../patches/libs/config/0001-Define-BOOST_ALL_NO_LIB.patch" "libs/config"
Expand Down

0 comments on commit 97594e5

Please sign in to comment.