10 lines
146 B
Bash
10 lines
146 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Change to the directory containing rxconfig.py
|
|
cd /app/peikarband
|
|
|
|
# Run reflex with all passed arguments
|
|
exec reflex "$@"
|
|
|