mirror of
https://github.com/token2/fido2-manage.git
synced 2026-04-09 18:55:38 +00:00
Add files via upload
This commit is contained in:
27
src/diff_exports.sh
Normal file
27
src/diff_exports.sh
Normal file
@@ -0,0 +1,27 @@
|
||||
#!/bin/sh -u
|
||||
|
||||
# Copyright (c) 2018 Yubico AB. All rights reserved.
|
||||
# Use of this source code is governed by a BSD-style
|
||||
# license that can be found in the LICENSE file.
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
for f in export.gnu export.llvm export.msvc; do
|
||||
if [ ! -f "${f}" ]; then
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
TMPDIR="$(mktemp -d)"
|
||||
GNU="${TMPDIR}/gnu"
|
||||
LLVM="${TMPDIR}/llvm"
|
||||
MSVC="${TMPDIR}/msvc"
|
||||
|
||||
awk '/^[^*{}]+;$/' export.gnu | tr -d '\t;' | sort > "${GNU}"
|
||||
sed 's/^_//' export.llvm | sort > "${LLVM}"
|
||||
grep -v '^EXPORTS$' export.msvc | sort > "${MSVC}"
|
||||
diff -u "${GNU}" "${LLVM}" && diff -u "${MSVC}" "${LLVM}"
|
||||
ERROR=$?
|
||||
rm "${GNU}" "${LLVM}" "${MSVC}"
|
||||
rmdir "${TMPDIR}"
|
||||
|
||||
exit ${ERROR}
|
||||
Reference in New Issue
Block a user