Use a better script path detection method

This commit is contained in:
Peter Cai 2023-05-10 10:54:45 -04:00
parent 496d6a5d97
commit 67790fdb2c

View file

@ -1,4 +1,4 @@
#!/bin/bash
# Always execute in the script's directory
pushd ${0%/*}
pushd "$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
find . -name "*.patch" -printf "%h\n" | uniq | xargs -I{} bash -c "cd $(pwd)/../{}; git am $(pwd)/{}/*"