11 lines
86 B
Bash
Executable File
11 lines
86 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
rm -rf node_modules &
|
|
rm -rf .next &
|
|
|
|
wait
|
|
|
|
echo "done"
|