13 lines
111 B
Bash
Executable File
13 lines
111 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd $(dirname "$0")
|
|
|
|
cat README
|
|
|
|
rm -rf tests
|
|
cp -r original tests
|
|
|
|
node fix.js
|
|
|
|
cp new/* -t tests
|