removed debugging code from build

This commit is contained in:
antelle 2021-03-26 19:40:57 +01:00
parent 8ba147f52f
commit 8f913c737c
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ module.exports = function (grunt) {
for (const { src } of this.files) {
for (const path of src) {
grunt.log.writeln(`Patching ${path}...`);
patch({ path, verbose: true });
patch({ path });
}
}
});