weird bug

main
m455 2019-03-11 21:50:23 -04:00
parent 19a2d7bdd9
commit 2f8e04be3e
1 changed files with 12 additions and 12 deletions

View File

@ -17,18 +17,18 @@ Now the default directory and todo list file have better default permissions:
- **Really weird bug to solve**: `~/.rodo/todo.txt`'s file permissions change from `rw-------` to `rw-rw-r--` or `rw-rw-rw` after being modified - **Really weird bug to solve**: `~/.rodo/todo.txt`'s file permissions change from `rw-------` to `rw-rw-r--` or `rw-rw-rw` after being modified
- For example: - For example:
1. Create a `test.txt` file somewhere 1. Create a `test.txt` file somewhere
2. Open a Racket REPL 2. Open a Racket REPL
3. Run the following to set `600` file permissions on the file: 3. Run the following to set `600` file permissions on the file:
```racket ```racket
(file-or-directory-permissions "test.txt" #o600) (file-or-directory-permissions "test.txt" #o600)
``` ```
4. Run `ls -l` to check the file permissions 4. Run `ls -l` to check the file permissions
5. Run the following to modify the file: 5. Run the following to modify the file:
```racket ```racket
(display-to-file "this is a test" "test.txt" #:mode 'text #:exists 'replace) (display-to-file "this is a test" "test.txt" #:mode 'text #:exists 'replace)
``` ```
6. Run `ls -l` to check the file permissions to see that they have changed to either `rw-rw-r--` or `rw-rw-rw` 6. Run `ls -l` to check the file permissions to see that they have changed to either `rw-rw-r--` or `rw-rw-rw`
- So far, the only solution I know of would be to do: - So far, the only solution I know of would be to do:
```racket ```racket
(begin (begin