File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1111
1212package-lock.json
1313exoframe.json
14+ yarn.lock
Original file line number Diff line number Diff line change 11{
22 "name" : " exoframe" ,
3- "version" : " 6.1.3 " ,
3+ "version" : " 6.1.4-dev " ,
44 "description" : " Exoframe is a self-hosted tool that allows simple one-command deployments using Docker" ,
55 "main" : " dist/index.js" ,
66 "repository" : " git@github.com:exoframejs/exoframe.git" ,
Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ exports.handler = async (args = {}) => {
183183 const tarStream = tar . pack ( workdir , {
184184 // ignore files from ignore list
185185 ignore : name => {
186- const relativePath = name . replace ( ` ${ workdir } /` , '' ) ;
186+ const relativePath = path . relative ( workdir , name ) ;
187187 const result = multimatch ( [ relativePath ] , ignores ) . length !== 0 ;
188188 return result ;
189189 } ,
You can’t perform that action at this time.
0 commit comments