Skip to content

Commit

Permalink
Turned off modified files check
Browse files Browse the repository at this point in the history
  • Loading branch information
purecatamphetamine committed Apr 15, 2018
1 parent 6852e3f commit 1d67cb8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion runnable/modules/update-metadata.js
Expand Up @@ -42,7 +42,11 @@ module.exports = function()
!/^examples\.[a-z]+\.json$/.test(file)
})

if (unexpected_modified_files.length > 0)
// Turned off this "modified files" check
// because on Windows random files constantly got "modified"
// without actually being modified.
// (perhaps something related to line endings)
if (false && unexpected_modified_files.length > 0)
{
var error

Expand Down

0 comments on commit 1d67cb8

Please sign in to comment.