diff options
author | Aikar <[email protected]> | 2016-05-12 21:24:19 -0400 |
---|---|---|
committer | Aikar <[email protected]> | 2016-05-12 21:24:19 -0400 |
commit | 0ebd642d150a361b7dcae2e4989c8687bf0f9735 (patch) | |
tree | fffc8f65d076575027a9d0944e45de3c388e8974 /scripts | |
parent | 153c12dfb338a9e106bd173133b1dd39890f43e8 (diff) | |
download | Paper-0ebd642d150a361b7dcae2e4989c8687bf0f9735.tar.gz Paper-0ebd642d150a361b7dcae2e4989c8687bf0f9735.zip |
Be more targetted with patch deletion
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/rebuildPatches.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rebuildPatches.sh b/scripts/rebuildPatches.sh index 10bb3eb9a1..d7eb8c1939 100755 --- a/scripts/rebuildPatches.sh +++ b/scripts/rebuildPatches.sh @@ -41,7 +41,7 @@ function savePatches { for i in $(seq -w 1 1 $last) do if [ $i -lt $next ]; then - rm 0$i-* + rm 0${i}-*.patch fi done else |