FloatingGhost
076f7534db
don't replace my history re-add CI lint stuff upload to $build-tag change SW path use default SW fix notifications streams use akkoma hashtag schema add local intl
8 lines
389 B
Bash
Executable file
8 lines
389 B
Bash
Executable file
#!/bin/bash
|
|
|
|
TARGET="${TARGET:-./distribution}"
|
|
|
|
rm -rf "${TARGET}/packs" || die "Removing old assets in priv/static/packs failed"
|
|
cp -r public/packs "${TARGET}/packs" || die "Copying new assets in priv/static/packs failed"
|
|
rm -rf "${TARGET}/emoji/*.svg" || die "Removing the old emoji assets failed"
|
|
cp -r public/emoji/* "${TARGET}/emoji" || die "Installing the new emoji assets failed"
|