diff options
Diffstat (limited to 't/io/fs.t')
-rw-r--r-- | t/io/fs.t | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -19,8 +19,9 @@ elsif ($^O eq 'VMS') { elsif ($ENV{PWD}) { $wd = $ENV{PWD}; } -elsif ( $^O =~ /android/ ) { - # On Android, pwd is a shell builtin, so plain `pwd` won't cut it +elsif ( $^O =~ /android/ || $^O eq 'nto' ) { + # On Android and Blackberry 10, pwd is a shell builtin, so plain `pwd` + # won't cut it $wd = `sh -c pwd`; } else { |