(file: string)
| 57 | const names = async (dir: string) => (await fs.readdir(dir)).sort(); |
| 58 | const mode = async (file: string) => (await fs.stat(file)).mode & 0o777; |
| 59 | |
| 60 | // The written-file artifacts (writeOutput's return value). The on-disk bundle also |
| 61 | // has a "workspaces" dir (pre-created bind-mount dirs), which is not a written file. |
| 62 | const BUNDLE = ["README.md", "deployment-spec.json", "docker-compose.yml", "engine-config.json", "engine.env"].sort(); |