mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 03:47:29 -03:00
13 lines
329 B
Bash
13 lines
329 B
Bash
|
#!/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"
|