bin: Use consistent comment formatting

This commit is contained in:
Richard Hansen 2020-05-14 17:25:51 -04:00
parent be1f2152fc
commit 8e8b75be6c
5 changed files with 38 additions and 38 deletions

View file

@ -1,26 +1,26 @@
#!/bin/sh
#Move to the folder where ep-lite is installed
# Move to the folder where ep-lite is installed
cd $(dirname $0)
#Was this script started in the bin folder? if yes move out
# Was this script started in the bin folder? if yes move out
if [ -d "../bin" ]; then
cd "../"
fi
#Is wget installed?
# Is wget installed?
hash wget > /dev/null 2>&1 || {
echo "Please install wget" >&2
exit 1
}
#Is zip installed?
# Is zip installed?
hash zip > /dev/null 2>&1 || {
echo "Please install zip" >&2
exit 1
}
#Is zip installed?
# Is zip installed?
hash unzip > /dev/null 2>&1 || {
echo "Please install unzip" >&2
exit 1