forked from bartvdbraak/blender
5 lines
128 B
Bash
5 lines
128 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
find ./libmv/ -type f | sed -r 's/^\.\///' > files.txt
|
||
|
find ./third_party/ -type f | sed -r 's/^\.\///' >> files.txt
|