diff options
author | w0rp <devw0rp@gmail.com> | 2016-10-17 13:03:21 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2016-10-17 13:03:21 +0100 |
commit | 1300fdc84bfb27ac455915536bb2a4012e3624a4 (patch) | |
tree | bb0e1e767a2bbb15cdbab7e470b236181f681367 /dmd-wrapper | |
parent | 15df679765fb4365c7a76f53866033da862c4c4e (diff) | |
download | ale-1300fdc84bfb27ac455915536bb2a4012e3624a4.zip |
#115 - Do not use readlink for the DMD wrapper, for Mac compatibility.
Diffstat (limited to 'dmd-wrapper')
-rwxr-xr-x | dmd-wrapper | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dmd-wrapper b/dmd-wrapper index 6db47d14..a72472e8 100755 --- a/dmd-wrapper +++ b/dmd-wrapper @@ -15,7 +15,7 @@ while read; do done # Read imports from DUB. -original_path="$(readlink -m .)" +original_path="$(pwd)" path="$original_path" import_line_options='' |