mirror of
https://abf.rosa.ru/djam/chromium-browser-stable-slava86.git
synced 2025-02-23 23:42:54 +00:00
6 lines
215 B
Bash
Executable file
6 lines
215 B
Bash
Executable file
#!/bin/sh
|
|
# Author: mikhailnov
|
|
set -x
|
|
cat *.spec | grep ^Patch | awk '{print $NF}' | sort | uniq > /tmp/patches-spec
|
|
ls | grep \.patch | sort | uniq > /tmp/patches-files
|
|
diff -u /tmp/patches-spec /tmp/patches-files
|