Files
Exiled-Exchange-2/testUpdate.sh
2025-03-13 09:10:03 -05:00

23 lines
257 B
Bash
Executable File

#!/bin/bash
# Remove ./renderer/dist if it exists
rm -rf ./renderer/dist
# Remove ./main/dist if it exists
rm -rf ./main/dist
cd ./renderer
npm install
npm run make-index-files
npm run build
cd ..
cd ./main
npm install
npm run build
npm run package