????JFIF??x?x????'
Server IP : 104.21.32.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/./eaabusiness.com/wp-content/plugins/everest-forms/bin/ |
Upload File : |
#!/bin/sh PLUGIN_SLUG="everest-forms" PROJECT_PATH=$(pwd) BUILD_PATH="${PROJECT_PATH}/build" DEST_PATH="$BUILD_PATH/$PLUGIN_SLUG" echo "Generating build directory..." rm -rf "$BUILD_PATH" mkdir -p "$DEST_PATH" echo "Installing PHP and JS dependencies..." npm install composer install || exit "$?" echo "Running JS Build..." npm run build:core || exit "$?" echo "Cleaning up PHP dependencies..." composer install --no-dev || exit "$?" echo "Syncing files..." rsync -rc --exclude-from="$PROJECT_PATH/.distignore" "$PROJECT_PATH/" "$DEST_PATH/" --delete --delete-excluded echo "Generating zip file..." cd "$BUILD_PATH" || exit zip -q -r "${PLUGIN_SLUG}.zip" "$PLUGIN_SLUG/" cd "$PROJECT_PATH" || exit mv "$BUILD_PATH/${PLUGIN_SLUG}.zip" "$PROJECT_PATH" echo "${PLUGIN_SLUG}.zip file generated!" echo "Build done!"