digitarald / flash-b2g

Flash Firefox OS devices from public Mozilla builds.
MIT License
18 stars 5 forks source link

[shallow_flash] ### Package "mktemp" not found! #5

Closed fwenzel closed 10 years ago

fwenzel commented 10 years ago

shallow_flash claims I don't have mktemp, which is not true:

% which mktemp
/usr/bin/mktemp

Besides, it's not a package ;)

digitarald commented 10 years ago

This is only used for creating a temporary folder for unpacking. Shallow_flash is executed in a temporary directory, so everything is already cleaned up anyways. There are other cases reported from where adb is not found even though it is in PATH, so I keep this open.

fwenzel commented 10 years ago

I realized that when I run which manually, I am on a zsh, but the script runs in bash. Anyway; even if I do /bin/bash; which mktemp it still works. So something's definitely afoul ;)

digitarald commented 10 years ago

That should be working now as env is no longer overriden. Reopen if not.

fwenzel commented 10 years ago

Aaah sweet