- Added check for updates at boot - Updated post update script to update OP25 and PDAB - Added initial makefile to replace the `setup.sh` - Added new test to make sure makefile builds - Renamed socket tests
12 lines
169 B
Bash
12 lines
169 B
Bash
#!/bin/bash
|
|
|
|
# Install client package updates
|
|
npm install
|
|
|
|
# Install OP25 Updates
|
|
cd ./op25
|
|
bash rebuild.sh
|
|
|
|
# Check for PDAB updates
|
|
cd ../discordAudioBot/pdab
|
|
git pull |