-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
298 additions
and
28 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
if [ -f Compropago_Payment_Extension-3.0.0.tgz ]; then | ||
echo Delete old file | ||
rm Compropago_Payment_Extension-3.0.0.tgz | ||
#!/bin/bash | ||
|
||
if [ -f Compropago_Payment_Extension-3.0.0.1.tgz ]; then | ||
echo -e "\033[1;31mDeleting old file\033[0m" | ||
rm Compropago_Payment_Extension-3.0.0.1.tgz | ||
fi | ||
|
||
echo Remove .DS_Store files | ||
echo -e "\033[1;33mRemove .DS_Store files\033[0m" | ||
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch | ||
|
||
echo "Building tgz module for Magento" | ||
tar -cvzf Compropago_Payment_Extension-3.0.0.tgz app lib LICENSE package.xml README.md | ||
echo -e "\033[1;32mBuilding tgz module for Magento\033[0m" | ||
tar -cvzf Compropago_Payment_Extension-3.0.0.1.tgz app lib LICENSE package.xml README.md |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
{ | ||
"name": "compropago/magento1", | ||
"description": "A Magento module for ComproPago, cash and SPEI payments", | ||
"homepage": "https://www.compropago.com", | ||
"license": "OSL V3.0", | ||
"readme": "README.md", | ||
"type": "magento-module", | ||
"version": "3.0.1", | ||
"homepage": "https://www.compropago.com", | ||
"readme": "README.md", | ||
"authors": [ | ||
{ | ||
"name": "Eduardo Aguilar", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "José Beltrán Solís", | ||
"email": "josebsx@live.com.mx" | ||
"email": "j.beltran@live.com.mx" | ||
} | ||
], | ||
"keywords": [ | ||
|
@@ -29,11 +33,17 @@ | |
}, | ||
"scripts": { | ||
"build": [ | ||
"composer install" | ||
"composer install", | ||
"./build.sh" | ||
], | ||
"clean": [ | ||
"rm -r lib/compropago/", | ||
"rm Compropago_Payment_Extension-3.0.1.tgz" | ||
] | ||
}, | ||
"scripts-descriptions": { | ||
"build": "" | ||
"build": "", | ||
"clean": "" | ||
}, | ||
"support": { | ||
"docs": "http://demo.compropago.com/plugins/magento1", | ||
|
Oops, something went wrong.