JeffDeCola/control-fpga-via-raspi-and-webserver

View on GitHub
section-3-backend-server/run.sh

Summary

Maintainability
Test Coverage
#!/bin/sh -e
# control-fpga-via-raspi-and-webserver run.sh

echo " "

if [ "$1" = "-debug" ]
then
    echo "************************************************************************"
    echo "* run.sh -debug (START) ************************************************"
    echo "************************************************************************"
    # set -x enables a mode of the shell where all executed commands
    # are printed to the terminal.
    set -x
    echo " "
else
    echo "************************************************************************"
    echo "* run.sh (START) *******************************************************"
    echo "************************************************************************"
    echo " "
fi

echo "go run main.go"
echo " "
go run main.go
echo " "

echo "************************************************************************"
echo "* run.sh (END) *********************************************************"
echo "************************************************************************"
echo " "