(entity)
| 55 | } |
| 56 | |
| 57 | validateEntity (entity) { |
| 58 | if (entity.split('/').length < 2) { |
| 59 | throw new Error(`${this.constructor.providerEntity} must be specified in the format group/project or group/subgroup/project`) |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | validateFile (file) { |
| 64 | if (file !== path.basename(file)) { |