mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 06:15:00 +00:00
12 lines
214 B
Bash
Executable file
12 lines
214 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
# only do this if the files don't exist ai!
|
|
ln -s /npm-install/node_modules /npm-install/package-lock.json .
|
|
|
|
|
|
sed -i 's/\bxtest(/test(/g' *.spec.js
|
|
npm run test
|
|
|