Преглед изворни кода

Revert "Start fakeroot faked in debug mode - fixes EISDIR issues"

enkore пре 8 година
родитељ
комит
b06ceb6547
3 измењених фајлова са 2 додато и 8 уклоњено
  1. 1 1
      .travis/run.sh
  2. 1 1
      Vagrantfile
  3. 0 6
      scripts/faked-debug.sh

+ 1 - 1
.travis/run.sh

@@ -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

+ 1 - 1
Vagrantfile

@@ -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

+ 0 - 6
scripts/faked-debug.sh

@@ -1,6 +0,0 @@
-#!/bin/sh
-if which faked; then
-  faked --debug "$@"
-else
-  faked-sysv --debug "$@"
-fi