Created
July 12, 2025 14:41
-
-
Save LunaTheFoxgirl/60cda49e9fd9b95c837f2d4c09706523 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Add SDKs | |
| for folder in /opt/SDKs/*; do | |
| if [ -d "$folder" ]; then | |
| echo "Added SDK $folder..." | |
| SDK_BIN="$folder/bin" | |
| SDK_LIB="$folder/lib" | |
| if [ -d "$SDK_BIN" ]; then | |
| export PATH="$SDK_BIN:$PATH" | |
| fi | |
| if [ -d "$SDK_LIB" ]; then | |
| export PATH="$SDK_LIB:$PATH" | |
| fi | |
| fi | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment