(fullPath)
| 62 | } |
| 63 | |
| 64 | function toRemotePath(fullPath) { |
| 65 | const localPath = relative(root, fullPath); |
| 66 | if (!localPath || localPath === "." || localPath.startsWith(`..${sep}`) || localPath === "..") return null; |
| 67 | return localPath.split(sep).join("/"); |
| 68 | } |
| 69 | |
| 70 | function isIgnored(remotePath) { |
| 71 | if (remotePath === ".cloudbox-live.json") return true; |