download-extension uk.co.compucorp.civicase https://github.com/compucorp/uk.co.compucorp.civicase/archive/1.14.0.zip
Created
April 15, 2021 11:40
-
-
Save reneolivo/8f5f1bcd82a1e2f051fbde421456960c to your computer and use it in GitHub Desktop.
CiviCRM Extension Downloader
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
rm -r -f $1 | |
wget -O ./temp-ext-file.zip $2 | |
unzip ./temp-ext-file.zip -d ./temp-ext-folder | |
rm ./temp-ext-file.zip | |
find ./temp-ext-folder -type d -name "$1*" -exec mv {} ./$1 \; # needs refactoring | |
rm -r -f ./temp-ext-folder | |
git add $1 | |
git status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment