Skip to content

Commit 2dd1327

Browse files
committed
fix fypp_deployment: addition of macros.inc
1 parent 9a5f44e commit 2dd1327

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/fypp_deployment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def recursive_copy(folder):
102102
for root, _, files in os.walk(folder):
103103
for file in files:
104104
if file not in prune:
105-
if file.endswith((".f90", ".F90", ".dat", ".npy", ".c", ".h")):
105+
if file.endswith((".f90", ".F90", ".dat", ".npy", ".c", ".h", ".inc")):
106106
shutil.copy2(os.path.join(root, file), base_folder+os.sep+folder+os.sep+file)
107107
recursive_copy('include')
108108
recursive_copy('src')

0 commit comments

Comments
 (0)