Forked from hktonylee/replace_node_modules_buildToolsVersion.sh
Last active
April 29, 2017 04:57
-
-
Save kccheung/8c36649edf61dfd65138fa13892a5a39 to your computer and use it in GitHub Desktop.
replace_node_modules_buildToolsVersion.sh
This file contains 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
#!/usr/bin/env bash | |
targetVersion="$1" | |
if [ "$1" == "" ]; then | |
echo "Usage: $0 <buildToolsVersion>"; | |
else | |
find \ | |
node_modules \ | |
-type f \ | |
-iname 'build.gradle' \ | |
-exec sed -i '' 's/buildToolsVersion ["'\''][0-9][0-9]\.[0-9]\.[0-9]["'\'']/buildToolsVersion "'${targetVersion}'"/g' "{}" +; | |
find \ | |
node_modules \ | |
-type f \ | |
-iname 'build.gradle' \ | |
-exec sed -i '' 's/compileSdkVersion [0-9][0-9]/compileSdkVersion 25/g' "{}" +; | |
find \ | |
node_modules \ | |
-type f \ | |
-iname 'build.gradle' \ | |
-exec sed -i '' 's/targetSdkVersion [0-9][0-9]/targetSdkVersion 25/g' "{}" +; | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment