dolphin/Externals/MoltenVK/patch.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
279 B
Bash
Raw Normal View History

#!/bin/bash
# Applies all patches in the "patches" folder to the cloned MoltenVK git repository.
#
# Usage: patch.sh <patches folder> <MoltenVK version>
#
set -e
# Reset the git repository first to ensure that it's in the base state.
git reset --hard $2
git apply $1/*.patch