Skip to content

Commit 641ca99

Browse files
bundle script
1 parent 4fc5eca commit 641ca99

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/.tmp
2+
magento2.zip

bundle.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
find . -name '.DS_Store' -type f -delete
2+
rm -rf magento2.zip
3+
rm -rf .tmp
4+
mkdir .tmp && mkdir .tmp
5+
cp -R * .tmp
6+
cd .tmp && zip -r archive.zip .
7+
cd ..
8+
mv .tmp/archive.zip magento2.zip
9+
rm -rf .tmp

0 commit comments

Comments
 (0)