From 63cdee78bcb661f7e04e7386b94b5eeb211a1152 Mon Sep 17 00:00:00 2001 From: miguel Date: Wed, 9 Aug 2023 09:38:58 +0100 Subject: [PATCH] docs(my-ls): add the restriction to the os/exec package in the subject and audit --- subjects/my-ls-1/README.md | 1 + subjects/my-ls-1/audit/README.md | 2 ++ 2 files changed, 3 insertions(+) diff --git a/subjects/my-ls-1/README.md b/subjects/my-ls-1/README.md index 51f66245..9d54d012 100644 --- a/subjects/my-ls-1/README.md +++ b/subjects/my-ls-1/README.md @@ -22,6 +22,7 @@ - Your project must be written in **Go**. - The code must respect the [**good practices**](../good-practices/README.md). - It is recommended to have **test files** for [unit testing](https://go.dev/doc/tutorial/add-a-test). +- The use of the `os/exec` package is prohibited within the `my-ls` codebase. ### Allowed packages diff --git a/subjects/my-ls-1/audit/README.md b/subjects/my-ls-1/audit/README.md index 9aab22c7..5571857c 100644 --- a/subjects/my-ls-1/audit/README.md +++ b/subjects/my-ls-1/audit/README.md @@ -2,6 +2,8 @@ ###### Has the requirement for the allowed packages been respected? +###### Can you confirm that the `os/exec` package was not used in this project? + ##### Run both my-ls and the system command `ls` with no arguments. ###### Does it display the same files and/or folders in the same order?