Make sure the path is understandable for nim on windows (#49)
This commit is contained in:
parent
c7977002fb
commit
daff2b4670
|
@ -70,6 +70,9 @@ export NIMBUS_BUILD_SYSTEM=yes
|
|||
echo "--noNimblePath" > nimbus-build-system.paths
|
||||
for file in $(ls -d $PWD/vendor/*)
|
||||
do
|
||||
if uname | grep -qiE "mingw|msys"; then
|
||||
file=$(cygpath -m $file)
|
||||
fi
|
||||
if [ -d "$file/src" ]; then
|
||||
echo --path:"\"$file/src\""
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue