Alexander K.
Alexander K.

Reputation: 1767

How to ensure that paths for executables are added to path for Adobe AIR application?

I wok on desktop Adobe AIR application. It creates .DMG for mac os builds. It is actually command line application. What I want is the ability to call it from command line - add it .../*.app/Content/MacOS to $PATH. Is there any standard way to do it with AIR ? I need it to work on Windows as well.

Thanks!

Upvotes: 0

Views: 60

Answers (1)

alxx
alxx

Reputation: 9897

No standard way, that's for sure. It's out of scope of AIR. You probably should do that with the shell - something like SET %PATH% = %PATH% + ... Assuming your AIR application has access to shell interpreter, it can do it on first run right after install.

Upvotes: 1

Related Questions