6 lines
177 B
Bash
Executable file
6 lines
177 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
git remote add upstream https://github.com/KhronosGroup/Vulkan-Headers || true
|
|
git fetch upstream
|
|
git merge upstream/main --strategy ours
|