ckloi / Scripting-Languages

0 stars 1 forks source link

small bug #8

Closed ckloi closed 7 years ago

ckloi commented 7 years ago

for all directory function

path = /a/b

on the relative path

curDir = b

right now mkdir('/c') is creating a directory inside b directory, which is not allowed

the correct one should be mkdir('c') excluding the / before it because it is not in absolute path

Ajfaust commented 7 years ago

Did you end up fixing it in the recent commits?

ckloi commented 7 years ago

yea, i think i fixed it