forked from bartvdbraak/blender
5 lines
141 B
Bash
Executable File
5 lines
141 B
Bash
Executable File
#!/bin/sh
|
|
|
|
find ./include/ -type f | sed -r 's/^\.\///' | sort > files.txt
|
|
find ./internal/ -type f | sed -r 's/^\.\///' | sort >> files.txt
|