mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 11:35:04 +01:00
6 lines
239 B
Bash
6 lines
239 B
Bash
|
#!/bin/zsh
|
||
|
cp theme.json target/assets/theme-customer.json
|
||
|
cat target/config.json | jq '.themeManifests += ["assets/theme-customer.json"]' | cat > target/config.temp.json
|
||
|
rm target/config.json
|
||
|
mv target/config.temp.json target/config.json
|