Compare commits

...

2 Commits

Author SHA1 Message Date
Mattéo Delabre aed358095f
Increase recommended memory limit 2021-01-27 18:04:32 +01:00
Mattéo Delabre a521e194f1
Quote candidates 2021-01-27 18:04:15 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -2,5 +2,5 @@ How to run:
```
docker image build --quiet --tag runall-image .
docker container run --tty --rm --read-only --memory=6m runall-image
docker container run --tty --rm --read-only --memory=128m runall-image
```

View File

@ -70,7 +70,7 @@ def find_script(pairs, max_length):
print(f"Progress: {done_tasks}/{num_tasks}")
if result:
print("> Found candidate:", script)
print(f"> Found candidate: '{script}'")
candidates.append(script)
print("Candidates:", candidates)