mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 18:26:15 +01:00
8 lines
96 B
Bash
Executable File
8 lines
96 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
rm -rf frontend/.cache
|
|
cd frontend
|
|
yarn install
|
|
yarn build-editor
|
|
yarn start |