You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4 lines
148 B
Plaintext
4 lines
148 B
Plaintext
2 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
|