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
| ### Keybase proof | |
| I hereby claim: | |
| * I am abnercrack on github. | |
| * I am abnercrack (https://keybase.io/abnercrack) on keybase. | |
| * I have a public key ASAytDTTleMxIxxC9fbBWJn8rX6MuAGrrhFjIU7Hvm34Dwo | |
| To claim this, I am signing this object: |
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
| for i in ./*.js; | |
| do mv "$i" "${i%.js}.ts"; | |
| done |
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
| #!/bin/bash | |
| cd /tmp || exit | |
| echo "Downloading sonar-scanner....." | |
| if [ -d "/tmp/sonar-scanner-cli-4.0.0.1744-linux.zip" ];then | |
| sudo rm /tmp/sonar-scanner-cli-4.0.0.1744-linux.zip | |
| fi | |
| wget -q https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.0.0.1744-linux.zip | |
| echo "Download completed." |
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
| # 解决阿里云、腾讯云无法git clone | |
| # 镜像到阿里源 | |
| git config --global url."https://git.521000.best.cnpmjs.org/".insteadOf "https://github.com/" | |
| git config --global protocol.http.allow always | |
| # 备选 | |
| git config --global url."https://hub.fastgit.org/".insteadOf "https://github.com/" | |
| git config --global protocol.http.allow always |
OlderNewer