From 267f53ac9006e0a1c6ead9999ccd2558dd8120bd Mon Sep 17 00:00:00 2001 From: Michael Baumgartner Date: Sun, 26 Oct 2025 11:46:08 +0100 Subject: [PATCH 1/2] Add missing backslash at the end of line For a multiline command in a shell every line break inside the command have to be masked with a backslash. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 23352002..0d350c6c 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ docker build -t bugsinpy . docker run -dt \ -v ./framework:/home/bugsinpy/framework \ -v ./projects:/home/bugsinpy/projects \ - -v ./workspace:/home/workspace + -v ./workspace:/home/workspace \ --name {your_container_name} bugsinpy docker exec -it {your_container_name} bash ``` From 6cca953526578f365e14c334b0b0e5079e37ba61 Mon Sep 17 00:00:00 2001 From: Michael Baumgartner Date: Sun, 26 Oct 2025 11:48:52 +0100 Subject: [PATCH 2/2] Fix name of temporary directory The directory for temporary files on Unix-like systems (e.g., Linux, MacOS) is tmp and not temp. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0d350c6c..93f04c71 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ fuzz | Run a test input generation from specific bug - Help usage from checkout command: - `bugsinpy-checkout --help` - Checkout a buggy source code version (youtube-dl, bug 2, buggy version): - - `bugsinpy-checkout -p youtube-dl -v 0 -i 2 -w /temp/projects` + - `bugsinpy-checkout -p youtube-dl -v 0 -i 2 -w /tmp/projects` - Compile sources and tests, and run tests from current directory: - `bugsinpy-compile` - `bugsinpy-test`