7 lines
240 B
Bash
Executable file
7 lines
240 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 || true
|
|
git status --porcelain | awk '{if ($1=="DU") print $2}' | xargs git rm
|