mirror of https://github.com/pret/pokecrystal.git
sort_symfile: don't need to use sort -o with a temp file
This commit is contained in:
parent
1baea408e2
commit
e58688c09b
|
@ -8,6 +8,6 @@ sed \
|
|||
-e "s/^00:[C-D]/4_WRAM0@&/g" \
|
||||
-e "s/^..:[D-D]/5_WRAMX@&/g" \
|
||||
$1 \
|
||||
| sort -o $TEMP_FILE
|
||||
sed -e "s/^.*@//g" $TEMP_FILE > $1
|
||||
rm $TEMP_FILE
|
||||
| sort \
|
||||
| sed -e "s/^.*@//g" > $TEMP_FILE
|
||||
mv $TEMP_FILE $1
|
||||
|
|
Loading…
Reference in New Issue