diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-08-25 14:56:20 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-08-25 14:56:20 -0700 |
commit | 749d455ac3c6bcad8a09d96bc613aafc2af45292 (patch) | |
tree | 08f07aa3c7f1f89d3786ac7ed47dd9fc0f4ce416 /run_one_test | |
parent | 0a288d46b95a42270d2c7c11900e75a9e7835d50 (diff) | |
download | mu-749d455ac3c6bcad8a09d96bc613aafc2af45292.tar.gz |
.
Diffstat (limited to 'run_one_test')
-rwxr-xr-x | run_one_test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_one_test b/run_one_test index aff33c36..8d69ad69 100755 --- a/run_one_test +++ b/run_one_test @@ -9,7 +9,7 @@ then echo $FILES > /tmp/last_run_files elif [[ -e /tmp/last_run_files ]] then - FILES=`cat /tmp/last_run_files` + FILES=$(cat /tmp/last_run_files) else echo "no test found" exit 0 # don't open trace |