mirror of https://github.com/mgba-emu/mgba.git
All: Fix sanitize-deb script not cleaning up after itself
This commit is contained in:
parent
13a77ea3ff
commit
473b805a00
1
CHANGES
1
CHANGES
|
@ -1,6 +1,7 @@
|
||||||
0.3.0: (Future)
|
0.3.0: (Future)
|
||||||
Bugfixes:
|
Bugfixes:
|
||||||
- GBA: Fix timers not updating timing when writing to only the reload register
|
- GBA: Fix timers not updating timing when writing to only the reload register
|
||||||
|
- All: Fix sanitize-deb script not cleaning up after itself
|
||||||
|
|
||||||
0.2.0: (2015-04-03)
|
0.2.0: (2015-04-03)
|
||||||
Features:
|
Features:
|
||||||
|
|
|
@ -57,5 +57,6 @@ while [ $# -gt 0 ]; do
|
||||||
sed -i~ "/^[^:]*: $/d" deb-temp/DEBIAN/control
|
sed -i~ "/^[^:]*: $/d" deb-temp/DEBIAN/control
|
||||||
rm deb-temp/DEBIAN/control~
|
rm deb-temp/DEBIAN/control~
|
||||||
dpkg-deb -b deb-temp $DEB
|
dpkg-deb -b deb-temp $DEB
|
||||||
|
rm -rf deb-temp
|
||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue