| Server IP : 82.208.35.60 / Your IP : 216.73.216.168 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/d2m/sofident_cz/wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/ |
Upload File : |
#!/bin/sh # creates tar.gz for current version VERSION=`./plessc -v | sed -n 's/^v\(.*\)$/\1/p'` OUT_DIR="tmp/lessphp" TMP=`dirname $OUT_DIR` mkdir -p $OUT_DIR tar -c `git ls-files` | tar -C $OUT_DIR -x rm $OUT_DIR/.gitignore rm $OUT_DIR/package.sh rm $OUT_DIR/lessify rm $OUT_DIR/lessify.inc.php OUT_NAME="lessphp-$VERSION.tar.gz" tar -czf $OUT_NAME -C $TMP lessphp/ echo "Wrote $OUT_NAME" rm -r $TMP echo echo "Don't forget to" echo "* Update the version in lessc.inc.php (two places)" echo "* Update the version in the README.md" echo "* Update the version in docs.md (two places)" echo "* Update the version in LICENSE" echo "* Update the version in the branch-alias in composer.json" echo "* Update @current_version in site.moon" echo "* Add entry to feed.moon for changelog" echo "* Update the -New- area on homepage with date and features" echo