mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-22 07:43:06 +00:00
Revert "Start fakeroot faked in debug mode - fixes EISDIR issues"
This commit is contained in:
parent
a2d08e3186
commit
b06ceb6547
3 changed files with 2 additions and 8 deletions
|
@ -19,5 +19,5 @@ if [[ "$(uname -s)" == "Darwin" ]]; then
|
|||
# no fakeroot on OS X
|
||||
sudo tox -e $TOXENV -r
|
||||
else
|
||||
fakeroot -f scripts/faked-debug.sh -u tox -r
|
||||
fakeroot -u tox -r
|
||||
fi
|
||||
|
|
2
Vagrantfile
vendored
2
Vagrantfile
vendored
|
@ -324,7 +324,7 @@ def run_tests(boxname)
|
|||
# otherwise: just use the system python
|
||||
if which fakeroot 2> /dev/null; then
|
||||
echo "Running tox WITH fakeroot -u"
|
||||
fakeroot -f scripts/faked-debug.sh -u tox --skip-missing-interpreters
|
||||
fakeroot -u tox --skip-missing-interpreters
|
||||
else
|
||||
echo "Running tox WITHOUT fakeroot -u"
|
||||
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