System: Debian/Ubuntu/Fedora. Might work for others as well.
As mentioned here, to update a go version you will first need to uninstall the original version.
To uninstall, delete the /usr/local/go directory by:
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "defaultProfile": "{00000000-0000-0000-ba54-000000000002}", | |
| "launchMode": "maximized", | |
| "theme": "light", | |
| "useTabSwitcher": false, | |
| "tabWidthMode": "titleLength", | |
| "profiles": { |
| #!/bin/bash | |
| cd `dirname $0`/../ | |
| projectDir=`pwd` | |
| buildDir="$projectDir/build" | |
| # release Official apk | |
| cd $buildDir | |
| touch timestampFile | |
| echo "Build release official apk" |
| # | |
| # | |
| # | |
| # | |
| # autogenerated by oem_buildinfo.sh | |
| persist.sys.kernel=yes | |
| persist.sys.main=yes | |
| persist.sys.system=yes | |
| persist.sys.radio=yes |
System: Debian/Ubuntu/Fedora. Might work for others as well.
As mentioned here, to update a go version you will first need to uninstall the original version.
To uninstall, delete the /usr/local/go directory by:
| #!/bin/bash | |
| # current workstation architecture (values: MACOSX, MACOSX32, MACOSX64, LINUX, LINUX32, LINUX64, WIN32, WIN64) | |
| WORKSTATION_ACTIVE_ARCH="MACOSX" | |
| # android ndk (revision version, workstation arch, install prefix path) | |
| ANDROID_NDK_VERSION="r10e" | |
| ANDROID_NDK_PLATFORM="darwin" | |
| ANDROID_NDK_PLATFORM_ARCH="x86_64" |
| #!/bin/bash | |
| cat << EOF | |
| ########################################################### | |
| # Workaround adb disconnecting issue on macOS Sierra | |
| # | |
| # More info: | |
| # https://code.google.com/p/android/issues/detail?id=219085 | |
| # credits to: [email protected], [email protected] | |
| ########################################################### |