mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
5511e18133
* Mark headers as non-executable * Update shebangs
11 lines
119 B
Bash
Executable File
11 lines
119 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
shopt -s globstar
|
|
|
|
LIST=$(ls asm/**/*.s)
|
|
|
|
for i in $LIST
|
|
do
|
|
printf "\n.set reorder\n" >> $i
|
|
done
|