mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-20 13:39:33 +01:00
15 lines
297 B
Bash
15 lines
297 B
Bash
|
|
echo "Installing retype"
|
||
|
|
|
||
|
|
dotnet tool install --global retypeapp
|
||
|
|
|
||
|
|
echo -n "Changing directory..."
|
||
|
|
|
||
|
|
cd docs/
|
||
|
|
|
||
|
|
echo -n "Building documentation: "
|
||
|
|
|
||
|
|
retype build --override "{ \"output\": \"./public_html\" }"
|
||
|
|
|
||
|
|
echo -n "Injecting script: "
|
||
|
|
|
||
|
|
cat ./js/injection.js >> ./public_html/resources/js/config.js
|