From bd76291dd05c76bebdc6bb997dda67ffbbc91da6 Mon Sep 17 00:00:00 2001 From: Fabio Pellacini Date: Wed, 23 Jun 2021 23:33:58 +0200 Subject: [PATCH] updated test --- .github/workflows/amalgamate-ubuntu20.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/amalgamate-ubuntu20.yml b/.github/workflows/amalgamate-ubuntu20.yml index 5a4257c..3d47714 100644 --- a/.github/workflows/amalgamate-ubuntu20.yml +++ b/.github/workflows/amalgamate-ubuntu20.yml @@ -19,7 +19,7 @@ jobs: run: | mkdir build && mkdir build/fast_float && - python3 ./scripts/amalgamate.py > build/fast_float/fast_float.h && + python3 ./script/amalgamate.py > build/fast_float/fast_float.h && cp tests/string_test.cpp build/ && cd build && g++ string_test.cpp diff --git a/README.md b/README.md index 4808c6a..1b2ff6a 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ target_link_libraries(myprogram PUBLIC fast_float) ## Using as single header -The script `scripts/amalgamate.py` may be used to generate a single header +The script `script/amalgamate.py` may be used to generate a single header version of the library if so desired. Just run the script from the root directory of this repository. You can customize the license type and output file if desired as described in