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