diff options
Diffstat (limited to 'create-package.sh')
-rwxr-xr-x | create-package.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/create-package.sh b/create-package.sh index 3ff5ec7..f59d58f 100755 --- a/create-package.sh +++ b/create-package.sh @@ -12,7 +12,14 @@ mkdir plugin_extradata/public mkdir templates/src/plugintemplates mkdir templates/transc cd libs -wget https://raw.github.com/kch42/ste/master/ste.php +test -d ste || mkdir ste +cd ste +wget https://github.com/kch42/ste/archive/master.zip +unzip master.zip +cp ste-master/ste.php . +cp -r ste-master/src . +rm -rf ste-master master.zip +cd .. wget http://michelf.com/docs/projets/php-markdown-1.0.1o.zip unzip php-markdown-*.zip mv PHP\ Markdown\ */markdown.php . |