mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
9 lines
115 B
Bash
Executable file
9 lines
115 B
Bash
Executable file
#!/bin/bash
|
|
|
|
find node_modules -type f -name "*.node"-print | xargs rm -rf
|
|
|
|
yarn install
|
|
|
|
yarn nx reset
|
|
|
|
exec "$@"
|