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
from: keyname = keyTransform(file.relative);
to: keyname = keyTransform(file.relative, file.path);
in this code:
if(keyTransform){// Allow the transform function to take the// complete path in case the user wants to change// the path of the file, too.// >>>>>>> change herekeyname=keyTransform(file.relative);}else{// ...Otherwise keep it exactly parallel.keyparts=helper.parsePath(file.relative);keyname=helper.buildName(keyparts.dirname,keyparts.basename+keyparts.extname);}
It help send files with their paths when we use keyTransform (see my answer in #33)
Thank you
The text was updated successfully, but these errors were encountered:
Can you change code in
/gulp-s3-upload/index.js
from:
keyname = keyTransform(file.relative);
to:
keyname = keyTransform(file.relative, file.path);
in this code:
It help send files with their paths when we use
keyTransform
(see my answer in #33)Thank you
The text was updated successfully, but these errors were encountered: