mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-05-30 09:47:00 -04:00
Fold the standalone rsync-web repo into the rsync source tree as rsync-web/, eliminating the sibling-checkout convention and the drift it causes between the release-time HTML snapshot in ../release/rsync-html and the source of truth in ../rsync-web. Flat-copy import (no git history merge). The standalone repo at github.com/RsyncProject/rsync-web is retained for historical reference and will be archived once the in-tree copy proves itself. Add /rsync-web/ to .gitattributes with export-ignore so the website content does not bloat the release source tarball produced by 'git archive' in packaging/release.py step_7_tarball. A follow-up commit repoints HTML_SRC in packaging/release.py at the new in-tree location.
11 lines
367 B
Bash
11 lines
367 B
Bash
#!/bin/sh
|
|
|
|
ulimit -c unlimited
|
|
|
|
# Some systems have "truss" or "tusc" instead of "strace".
|
|
# The -f option tells strace to follow children too.
|
|
# The -t option asks for timestamps.
|
|
# The -s 1024 option increases the string decoding limit per function call.
|
|
# The -o option tells strace where to send its output.
|
|
strace -f -t -s 1024 -o /tmp/rsync-$$.out rsync "${@}"
|