mirror of
https://github.com/CaramelFur/Picsur.git
synced 2025-11-02 10:15:47 +01:00
19 lines
117 B
Bash
19 lines
117 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
yarn purge
|
||
|
|
|
||
|
|
(
|
||
|
|
cd shared
|
||
|
|
yarn purge
|
||
|
|
)
|
||
|
|
|
||
|
|
(
|
||
|
|
cd backend
|
||
|
|
yarn purge
|
||
|
|
)
|
||
|
|
|
||
|
|
(
|
||
|
|
cd frontend
|
||
|
|
yarn purge
|
||
|
|
)
|