Configured project

This commit is contained in:
Leonetienne
2022-03-05 12:48:26 +01:00
parent 4d1788fc6d
commit 7b369535f4
5 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
#!/bin/bash
# Replace {PROJECT_NAME} with first parameter given in all files
find . -type f -exec sed -i "s/{PROJECT_NAME}/$1/g" {} \;
find . -type f -not \( -path '*.git/*' -or -path '*configure.sh*' -or -name 'Catch2.h' \) -exec sed -i "s/{PROJECT_NAME}/$1/g" {} \;