summaryrefslogtreecommitdiff
path: root/test/withExtendedPath/test.sh
blob: de517427349d9879f6ee8078967324fc4ec979d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
set -e

TOOLS_DIR=`pwd`/additionalTools
mkdir -p ${TOOLS_DIR}
cat > ${TOOLS_DIR}/mytool <<'EOF'
#!/bin/sh

echo using my CuStOm tool
EOF
chmod 755 ${TOOLS_DIR}/mytool

./withExtendedPath ${TOOLS_DIR} mytool | grep CuStOm