Lines Matching full:fetch
29 'skip-on-fetch-failure',
69 final bool skipOnFetchFailure = parsedArguments['skip-on-fetch-failure'];
130 for (String fetchCommand in instructions.fetch) {
135 print('Skipping (fetch failed).');
137 print('Skipping ${file.path} (fetch failed).');
140 print('ERROR: Failed to fetch repository.');
197 final List<String> fetch = <String>[];
207 } else if (line.startsWith('fetch=')) {
208 fetch.add(line.substring(6));
223 if (fetch.isEmpty)
224 …throw FormatException('${errorPrefix}No "fetch" directives specified. Two lines are expected: "git…
225 if (fetch.length < 2)
226 …throw FormatException('${errorPrefix}Only one "fetch" directive specified. Two lines are expected:…
227 if (!fetch[0].contains(_fetch1))
228 …throw FormatException('${errorPrefix}First "fetch" directive does not match expected pattern (expe…
229 if (!fetch[1].contains(_fetch2))
230 …throw FormatException('${errorPrefix}Second "fetch" directive does not match expected pattern (exp…
237 List<String>.unmodifiable(fetch),
243 const TestFile._(this.contacts, this.fetch, this.update, this.tests);
251 final List<String> fetch;