Skip to content

Commit

Permalink
fix: remove refund property
Browse files Browse the repository at this point in the history
  • Loading branch information
epoundor committed Mar 21, 2024
1 parent 64150bb commit 9697907
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Binary file not shown.
3 changes: 1 addition & 2 deletions src/zip.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const path = require('path');
const { zip } = require("zip-a-folder")
const { promisify } = require('util');

PLUGIN_VERSION = "2.4.1"
const foldersAndFilesToCopy = [
"admin",
"build",
Expand Down Expand Up @@ -106,7 +105,7 @@ async function a() {

a()
.then(() => {
const zipName = `kkiapay-woocommerce_v${PLUGIN_VERSION}.zip`
const zipName = `kkiapay-woocommerce.zip`
zip(folderPath, path.join(__dirname, '..', zipName)).then(() => {
deleteFolderRecursive(folderPath)
console.log("Your zip is here", path.join(__dirname, '..', zipName));
Expand Down

0 comments on commit 9697907

Please sign in to comment.