From a280e205d6b17852c0868002d6ff386c35ee0130 Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Mon, 30 Jun 2025 19:31:59 -0400 Subject: [PATCH] fix: typo --- tests/convert/full/task.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/convert/full/task.toml b/tests/convert/full/task.toml index bcfd361..e475d03 100644 --- a/tests/convert/full/task.toml +++ b/tests/convert/full/task.toml @@ -40,9 +40,9 @@ command = "sh -c 'yes | head -n 10 > yes.txt'" # command to run in the sandbox, files.import = [ "tools/filelength" ] # files to import into the sandbox # key is the path in the host, value is the path in the sandbox -# e.g. this will copy `/home/tt/.config/joj/h7/Makefile` in host -# to `/w/tools/Makefile` in the sandbox -files.import-map = { "tools/Makefile"= "h7/Makefile" } +# e.g. this will copy `/home/tt/.config/joj/tools/Makefile` in host +# to `/w/h7/Makefile` in the sandbox +files.import-map = { "tools/Makefile" = "h7/Makefile" } # files to export from the sandbox, relative to `/w`, will be imported to later # stages automatically files.export = [ "yes.txt" ]