You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately there is a little bug in the Gruntfile resulting in the fact that the zip that gets created contains ../../ before every file (thus the files will get extracted two levels above the current folder on the wordpress server). I fixed this by changing the compress -> files array to:
Unfortunately there is a little bug in the Gruntfile resulting in the fact that the zip that gets created contains ../../ before every file (thus the files will get extracted two levels above the current folder on the wordpress server). I fixed this by changing the compress -> files array to:
files: [
{
expand: true,
cwd: '../../',
src: ['/*', '!dev/', '!production/**']
}
]
The text was updated successfully, but these errors were encountered: