mirror of https://github.com/bsnes-emu/bsnes.git
10 lines
141 B
Bash
10 lines
141 B
Bash
|
synchronize() {
|
||
|
if [ -d ../"$1" ]; then
|
||
|
test -d "$1" && rm -r "$1"
|
||
|
cp -r ../"$1" ./"$1"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
synchronize "nall"
|
||
|
rm -r nall/test
|