Displaying 2 results from an estimated 2 matches for "191d663".
Did you mean:
  19163
  
2018 Aug 12
0
[PATCH nbdkit 08/10] freebsd: In scripts use 'env bash' instead of '/bin/bash'.
....sh
index 8d4426d..4456741 100755
--- a/tests/test-shebang-perl.sh
+++ b/tests/test-shebang-perl.sh
@@ -1,4 +1,4 @@
-#!/bin/bash -
+#!/usr/bin/env bash
 # nbdkit
 # Copyright (C) 2017 Red Hat Inc.
 # All rights reserved.
diff --git a/tests/test-shebang-python.sh b/tests/test-shebang-python.sh
index 191d663..5f1d024 100755
--- a/tests/test-shebang-python.sh
+++ b/tests/test-shebang-python.sh
@@ -1,4 +1,4 @@
-#!/bin/bash -
+#!/usr/bin/env bash
 # nbdkit
 # Copyright (C) 2017 Red Hat Inc.
 # All rights reserved.
diff --git a/tests/test-shebang-ruby.sh b/tests/test-shebang-ruby.sh
index e8d9c89..ad14b94...
2018 Aug 12
13
[PATCH nbdkit 00/10] FreeBSD support.
With these patches, a majority of tests pass.  The notable
things which are still broken:
 - Because FreeBSD links /home -> /usr/home, $(pwd) gives a different
   result from realpath(2).  Therefore some tests which implicitly
   rely on (eg) a plugin which calls nbdkit_realpath internally and
   then checking that path against $(pwd) fail.
 - Shebangs (#!) don't seem to work the same way