diff options
| author | Nicolas Paul <n@nc0.fr> | 2023-04-26 04:08:17 +0200 |
|---|---|---|
| committer | Nicolas Paul <n@nc0.fr> | 2023-04-26 04:08:17 +0200 |
| commit | 97d5f483eade5c84c07180cb3be467c7974a39f9 (patch) | |
| tree | 6a3e5b8ee9074508494ca887bca9f383c6e30036 /testdata | |
| parent | 5e3c0bba0ff464a201e3b2677d8a7b4e795bba69 (diff) | |
Fix recursivity problem
The tool was not updating the output directory with nested directories' name, therefore everyhting was being generated at the root of the output directory
Diffstat (limited to 'testdata')
| -rw-r--r-- | testdata/.keep | 0 | ||||
| -rwxr-xr-x | testdata/build.sh | 9 |
2 files changed, 9 insertions, 0 deletions
diff --git a/testdata/.keep b/testdata/.keep deleted file mode 100644 index e69de29..0000000 --- a/testdata/.keep +++ /dev/null diff --git a/testdata/build.sh b/testdata/build.sh new file mode 100755 index 0000000..940a977 --- /dev/null +++ b/testdata/build.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2023 Nicolas Paul All rights reserved. +# Use of this source code is governed by a BSD-style +# license that can be found in the LICENSE file. + + +set -e +rm -rf testdata/dst +./crocc -out=testdata/dst testdata/src |
