os: fix cp() spaces in files names
parent
a02395fe2d
commit
c50c6812ce
|
@ -160,7 +160,7 @@ pub fn cp(old, new string) ?bool {
|
||||||
return error_with_code('failed to copy $old to $new', int(result))
|
return error_with_code('failed to copy $old to $new', int(result))
|
||||||
}
|
}
|
||||||
} $else {
|
} $else {
|
||||||
os.system('cp $old $new')
|
os.system('cp "$old" "$new"')
|
||||||
return true // TODO make it return true or error when cp for linux is implemented
|
return true // TODO make it return true or error when cp for linux is implemented
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue