Skip to content

Commit

Permalink
Fix broken application of patches that slipped in from last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
RyeMutt committed Aug 10, 2024
1 parent a65a4d7 commit e0fdad7
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 e0fdad7

Please sign in to comment.