8 lines
71 B
Bash
Executable File
8 lines
71 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DIR="x"
|
|
|
|
rm -rf ${DIR}
|
|
mkdir ${DIR}
|
|
TMPDIR=${DIR} npm test
|