Skip to content

Commit

Permalink
fix double escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
eirslett committed Aug 16, 2019
1 parent f558f6c commit 5424679
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -4,4 +4,4 @@ assert new File(basedir, 'node_modules/less/package.json').exists() : "Less depe

String buildLog = new File(basedir, 'build.log').text
assert buildLog.contains('BUILD SUCCESS') : 'build was not successful'
assert buildLog.replace(File.separatorChar, '/' as char).matches('(?s).+Unpacking .+\\Q/local-repo/com/github/eirslett/yarn/[1-9\.]*/yarn-[1-9\.]*.tar.gz\\E into .+/target/node/yarn.+') : 'incorrect local repository location'
assert buildLog.replace(File.separatorChar, '/' as char).matches('(?s).+Unpacking .+\\Q/local-repo/com/github/eirslett/yarn/[1-9\\.]*/yarn-[1-9\\.]*.tar.gz\\E into .+/target/node/yarn.+') : 'incorrect local repository location'

0 comments on commit 5424679

Please sign in to comment.