Prechádzať zdrojové kódy

don't leave access.txt in read-only so we can clean up

Simon Krajewski 5 rokov pred
rodič
commit
51b5ecf01b
2 zmenil súbory, kde vykonal 2 pridanie a 0 odobranie
  1. 1 0
      .gitignore
  2. 1 0
      tests/asys/test/TestFileSystem.hx

+ 1 - 0
.gitignore

@@ -133,3 +133,4 @@ tests/server/test.js.map
 *.merlin
 lib.sexp
 src/compiler/version.ml
+tests/asys/resources-rw/

+ 1 - 0
tests/asys/test/TestFileSystem.hx

@@ -29,6 +29,7 @@ class TestFileSystem extends Test {
 		exc(() -> NewFS.access("resources-rw/access.txt", Execute));
 
 		// cleanup
+		NewFS.chmod("resources-rw/access.txt", "rw------x");
 		OldFS.deleteFile("resources-rw/access.txt");
 	}