Skip to content
This repository was archived by the owner on Aug 10, 2022. It is now read-only.

Commit 32930e6

Browse files
author
Michael Babker
committed
Create packaging script
1 parent 4201cd6 commit 32930e6

File tree

2 files changed

+11
-15
lines changed

2 files changed

+11
-15
lines changed

.gitignore

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,6 @@
55
.DS_Store
66
.idea
77

8-
# Local System Files (i.e. cache, logs, etc.) #
9-
/administrator/cache
10-
/cache
11-
/logs
12-
/tmp
13-
/configuration.php
14-
/.htaccess
15-
/web.config
16-
17-
# Test Related Files #
18-
/phpunit.xml
19-
/tests/system/webdriver/tests/logs/
20-
21-
# phpDocumentor Logs #
22-
phpdoc-*
8+
# Packages directories #
9+
/build/packages
10+
/build/packaging

build/create-package.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/sh
2+
cd ../
3+
rm -rf build/packaging && mkdir build/packaging
4+
rm -rf build/packages && mkdir build/packages
5+
cp -r plugins/installer/webinstaller/* build/packaging
6+
cp -r media/plg_installer_webinstaller build/packaging/media
7+
cd build/packaging
8+
zip -r ../packages/plg_installer_webinstaller.zip .

0 commit comments

Comments
 (0)