-
-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install an airsdk without AIR on macOS and linux #65
base: develop
Are you sure you want to change the base?
Conversation
Implements the functionality with bash. Depends on python, curl, unzip.
Interesting idea! The reason we haven't been down this path is that we are hoping to eventually use a captive runtime app for APM which would negate this need. However this approach could be a decent intermediate one if you could find an equivalent approach for windows? |
Not having used a windows computer since 1998, I have very little idea how you would do this. Maybe from the batch script ( |
So can this be merged before a windows implementation is available? I'm using the feature so I can rely on |
I suggest moving this to an external tool currently, as we are still in discussions with Harman around an sdk manager and the direction of the airsdk commands. We may be moving them to a separate tool. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got an additional issue with this one.
This script is used on windows under WSL and GitBash clients where python isn't installed by default. Seems curl and unzip are at least available in the couple of machines i've tested.
This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days. |
Implements the functionality with bash.
Depends on
python
,curl
andunzip
(which are present by default on macOS, AFAIK).Note: I realize this only supports macOS at the moment, as the download URL used here is the one for macOS. The correct link can be figured out by checking the OS with
uname
.Note 2: Maybe setting
license=accepted
is a little borderline? What could be done? I'm thinking an environment variableAIRSDK_ACCEPT_LICENSE=yes
(DONE)