mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
9 lines
466 B
Bash
Executable File
9 lines
466 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# TODO: this is a hack, we should find a better way to share files between backend and webapp
|
|
[ -f src/config/tmp/emails.js ] && mv src/config/tmp/emails.js src/config/emails.ts
|
|
[ -f src/config/tmp/logos.js ] && mv src/config/tmp/logos.js src/config/logos.ts
|
|
[ -f src/config/tmp/metadata.js ] && mv src/config/tmp/metadata.js src/config/metadata.ts
|
|
[ -f src/constants/categories.js ] && mv src/constants/categories.js src/constants/categories.ts
|
|
exit 0
|