4 lines
148 B
Plaintext
4 lines
148 B
Plaintext
6 months ago
|
for file in *.cs; do
|
||
|
echo "#if DEBUG && !UNITY_WP_8_1 && !UNITY_WSA" | cat - $file > tempfile && mv tempfile $file
|
||
|
echo '#endif' >> "$file"
|
||
|
done
|