mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 10:00:42 +00:00
11 lines
241 B
Plaintext
11 lines
241 B
Plaintext
|
#!/bin/sh
|
||
|
# lazy way to clean linux memcard manager
|
||
|
mv ../../SConstruct ../../dolphin_SConstruct
|
||
|
cp SConstruct ../../SConstruct
|
||
|
cp SConscript ../../SConscript
|
||
|
cd ../../
|
||
|
scons -c
|
||
|
rm SConstruct
|
||
|
rm SConscript
|
||
|
mv dolphin_SConstruct SConstruct
|