Skip to content

Commit 46a8538

Browse files
committed
override ls and mv commands too for asan/ubsan
1 parent c249b97 commit 46a8538

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: system-overrides.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
OVERRIDE_DIR=$1
55
[ "$1" != "" ] || OVERRIDE_DIR=$(/bin/pwd -P)
66
mkdir -p ${OVERRIDE_DIR}
7-
for cmd in ps cp ; do
7+
for cmd in ps cp ls mv; do
88
if [ ! -x ${OVERRIDE_DIR}/${cmd} ] ; then
99
sys_cmd=$(which $cmd || echo "")
1010
echo '#!/bin/bash' > ${OVERRIDE_DIR}/${cmd}

0 commit comments

Comments
 (0)