David Blume commited on 2019-05-03 09:04:45
Showing 1 changed files, with 1 additions and 1 deletions.
... | ... |
@@ -73,7 +73,7 @@ md() { |
73 | 73 |
if [[ $sys_name == Darwin* ]]; then |
74 | 74 |
T=$(mktemp $TMPDIR$(uuidgen).html) |
75 | 75 |
curl -s -X POST --data-binary @"$1" https://md.dlma.com/ > $T |
76 |
- open -a /Applications/Safari.app $T |
|
76 |
+ open $T |
|
77 | 77 |
elif [[ $sys_name == CYGWIN* ]]; then |
78 | 78 |
T=$(mktemp --suffix=.html) |
79 | 79 |
curl -s -X POST --data-binary @"$1" https://md.dlma.com/ > $T |
80 | 80 |