mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
7 lines
252 B
Bash
7 lines
252 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ "${OS}" == "windows" ]; then
|
|
# break out of bash to get Windows paths
|
|
# use cmd.exe instead of cmd to work from WSL
|
|
cmd.exe /c $(echo $DMD | tr / \\) -c \\\\.\\%CD%\\compilable\\extra-files\\test19266.d -deps=nul:
|
|
fi
|