mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-21 21:57:36 +00:00
Merge pull request #2597 from borgbackup/revert-2478-faked-debugging
Revert "Start fakeroot faked in debug mode - fixes EISDIR issues"
This commit is contained in:
commit
5d689193cc
3 changed files with 2 additions and 8 deletions
|
@ -19,5 +19,5 @@ if [[ "$(uname -s)" == "Darwin" ]]; then
|
||||||
# no fakeroot on OS X
|
# no fakeroot on OS X
|
||||||
sudo tox -e $TOXENV -r
|
sudo tox -e $TOXENV -r
|
||||||
else
|
else
|
||||||
fakeroot -f scripts/faked-debug.sh -u tox -r
|
fakeroot -u tox -r
|
||||||
fi
|
fi
|
||||||
|
|
2
Vagrantfile
vendored
2
Vagrantfile
vendored
|
@ -324,7 +324,7 @@ def run_tests(boxname)
|
||||||
# otherwise: just use the system python
|
# otherwise: just use the system python
|
||||||
if which fakeroot 2> /dev/null; then
|
if which fakeroot 2> /dev/null; then
|
||||||
echo "Running tox WITH fakeroot -u"
|
echo "Running tox WITH fakeroot -u"
|
||||||
fakeroot -f scripts/faked-debug.sh -u tox --skip-missing-interpreters
|
fakeroot -u tox --skip-missing-interpreters
|
||||||
else
|
else
|
||||||
echo "Running tox WITHOUT fakeroot -u"
|
echo "Running tox WITHOUT fakeroot -u"
|
||||||
tox --skip-missing-interpreters
|
tox --skip-missing-interpreters
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
if which faked; then
|
|
||||||
faked --debug "$@"
|
|
||||||
else
|
|
||||||
faked-sysv --debug "$@"
|
|
||||||
fi
|
|
Loading…
Reference in a new issue