mirror of
https://github.com/Michael-Prince-Sharpe/bsnes-classic.git
synced 2025-04-02 10:21:42 -04:00
14 lines
280 B
Bash
Executable file
14 lines
280 B
Bash
Executable file
synchronize() {
|
|
if [ -d ../"$1" ]; then
|
|
test -d "$1" && rm -r "$1"
|
|
cp -r ../"$1" ./"$1"
|
|
fi
|
|
}
|
|
|
|
synchronize "libco"
|
|
synchronize "nall"
|
|
synchronize "ruby"
|
|
|
|
test -d libco/doc && rm -r libco/doc
|
|
test -d libco/test && rm -r libco/test
|
|
test -d ruby/_test && rm -r ruby/_test
|