diff options
author | Robin Krahl <guskraro@student.gu.se> | 2017-10-10 13:19:52 +0200 |
---|---|---|
committer | Robin Krahl <guskraro@student.gu.se> | 2017-10-10 13:19:52 +0200 |
commit | d3f3c2544b31d2ee194b1287bd07057b32871d7a (patch) | |
tree | 822faf1a0dea9fd1c050cee932c7ec4039ca0c60 /broccoli/script | |
parent | 8ddf587d5530836c9ce7d87d6a3b7230551cdc53 (diff) | |
download | midbro-d3f3c2544b31d2ee194b1287bd07057b32871d7a.tar.gz midbro-d3f3c2544b31d2ee194b1287bd07057b32871d7a.tar.bz2 |
investigate.sh: Fix the handling of relative dump paths
Diffstat (limited to 'broccoli/script')
-rwxr-xr-x | broccoli/script/investigate.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/broccoli/script/investigate.sh b/broccoli/script/investigate.sh index df1c617..f701102 100755 --- a/broccoli/script/investigate.sh +++ b/broccoli/script/investigate.sh @@ -10,7 +10,7 @@ then exit fi -CAPTURE_FILE=$1 +CAPTURE_FILE=$(realpath "$1") FILTER_MACHINE=$2 FILTER_REGISTER=$3 |