16 lines
252 B
Bash
Executable File
16 lines
252 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# run.sh - Run the MEV bot
|
|
|
|
echo "Running MEV bot..."
|
|
|
|
# Build the application first
|
|
./scripts/build.sh
|
|
|
|
if [ $? -eq 0 ]; then
|
|
# Run the application
|
|
./bin/mev-bot start
|
|
else
|
|
echo "Failed to build the application!"
|
|
exit 1
|
|
fi |