diff options
author | Luca Deri <deri@ntop.org> | 2022-08-05 11:17:59 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2022-08-05 11:17:59 +0200 |
commit | 10f283b467c36cc76185217214ae3411a75b594f (patch) | |
tree | ae4d2377d779f41c4592e1faaa538eb798d9de9b /tests | |
parent | 9fb11c909e4439504d39631bb9ace803866afc5f (diff) |
Fix for systems with no realpath (MacOS)
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/do.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/do.sh.in b/tests/do.sh.in index bb15c4a8d..b01de941b 100755 --- a/tests/do.sh.in +++ b/tests/do.sh.in @@ -29,7 +29,7 @@ RC=0 PCAPS=`cd pcap; /bin/ls *.pcap *.pcapng *.cap` if [ ! -x "../example/ndpiReader${EXE_SUFFIX}" ]; then - echo "$0: Missing $(realpath ../example/ndpiReader${EXE_SUFFIX})" + echo "$0: Missing ../example/ndpiReader${EXE_SUFFIX}" echo "$0: Run ./configure and make first" exit 1 fi |