8 lines
138 B
Bash
8 lines
138 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
cd "$(dirname "$0")"
|
||
|
|
|
||
|
|
# Always fetch latest git dependencies
|
||
|
|
rm -rf node_modules/@clawd
|
||
|
|
npm install
|