We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 457a6e0 commit 0e6813bCopy full SHA for 0e6813b
1 file changed
packages/angular-cli/commands/github-pages-deploy.ts
@@ -216,7 +216,10 @@ const githubPagesDeployCommand = Command.extend({
216
files = files.concat(`"${f}" `);
217
}
218
});
219
- return execPromise(`git rm -r ${files}`);
+ return execPromise(`git rm -r ${files}`)
220
+ .catch(() => {
221
+ // Ignoring errors when trying to erase files.
222
+ });
223
224
225
0 commit comments