blob: cc51699dc938adf9266b23a9309490a3b878b28d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# Copyright (c) 2024-present The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or https://opensource.org/license/mit/.
export LC_ALL=C
if [ -n "$SOURCE_DATE_EPOCH" ]; then
find . -exec touch -d "@$SOURCE_DATE_EPOCH" {} +
fi
find . | sort | "$1" -X@ "$2"
|