Skip to content
Snippets Groups Projects
Commit 617f39e7 authored by Tom French's avatar Tom French
Browse files

feat: change ROOT variable to be package root rather than bin

parent da62f9b5
No related branches found
No related tags found
No related merge requests found
#!/bin/bash -e #!/bin/bash -e
ROOT=`dirname $0` ROOT=`dirname $0`/..
rm -rf ${ROOT}/../client-build rm -rf ${ROOT}/client-build
cp -r ${ROOT}/../../desktop-client/build ${ROOT}/../client-build cp -r ${ROOT}/../desktop-client/build ${ROOT}/client-build
# Remove the embedded backend for the browser version. Will improve # Remove the embedded backend for the browser version. Will improve
# this process # this process
rm -rf ${ROOT}/../client-build/data rm -rf ${ROOT}/client-build/data
rm -rf ${ROOT}/../client-build/*kcab.* rm -rf ${ROOT}/client-build/*kcab.*
rm -rf ${ROOT}/../client-build/*.wasm rm -rf ${ROOT}/client-build/*.wasm
rm -rf ${ROOT}/../client-build/*.map rm -rf ${ROOT}/client-build/*.map
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment