mirror of
https://github.com/facebook/sapling.git
synced 2025-01-07 14:10:42 +03:00
e75b9fc1b1
Summary: This commit moves most of the stuff in hgext3rd and related tests to hg-crew/hgext and hg-crew/test respectively. The things that are not moved are the ones which require some more complex imports. Depends on D6675309 Test Plan: - tests are failing at this commit, fixes are in the following commits Reviewers: #sourcecontrol Differential Revision: https://phabricator.intern.facebook.com/D6675329
9 lines
154 B
Bash
Executable File
9 lines
154 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for path in "$@"; do
|
|
[[ -e $RUNTESTDIR/../$path ]] || {
|
|
echo 'skipped: missing core hg file: '"$path"
|
|
exit 80
|
|
}
|
|
done
|