forked from bartvdbraak/blender
26f63bfa19
need to be tweaks but it seems to work on my linux box. I haven't touched any of the other build systems so those will need to be done. We probably don't need all of this stuff but I figured better to add a little too much then to little. Kent
5 lines
137 B
Bash
Executable File
5 lines
137 B
Bash
Executable File
#!/bin/sh -fx
|
|
# script to get rid of the grabage that MAC OSX drops in all the directories
|
|
|
|
find . -name .DS_Store -print -exec rm {} \;
|