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