From 63763caef431b1f0dd9c0ec936af4636b4d7820b Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Thu, 17 Mar 2016 22:50:13 -0700 Subject: [PATCH] tools.deploy.test.19: case sensitive on linux. --- basis/tools/deploy/test/19/19.factor | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/basis/tools/deploy/test/19/19.factor b/basis/tools/deploy/test/19/19.factor index eafca60f33..3e67b3df88 100644 --- a/basis/tools/deploy/test/19/19.factor +++ b/basis/tools/deploy/test/19/19.factor @@ -4,7 +4,8 @@ USING: io io.files io.encodings.ascii ; IN: tools.deploy.test.19 : main ( -- ) - ! make sure to test vocab: urls - "vocab:LICENSE.txt" ascii file-contents write ; + ! make sure to test vocab: paths + ! this particular license.txt is a copy in this subdir + "vocab:license.txt" ascii file-contents write ; MAIN: main