mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
[scripts] format bash scripts
This commit is contained in:
@@ -4,8 +4,7 @@ SCRIPT_NAME="${BASH_SOURCE[0]}"
|
|||||||
SCRIPT_PATH=$(dirname "${BASH_SOURCE[0]}")
|
SCRIPT_PATH=$(dirname "${BASH_SOURCE[0]}")
|
||||||
SCRIPT_PATH=$(realpath "$SCRIPT_PATH")
|
SCRIPT_PATH=$(realpath "$SCRIPT_PATH")
|
||||||
|
|
||||||
if [ $# -ne 1 ];
|
if [ $# -ne 1 ]; then
|
||||||
then
|
|
||||||
echo "$0 <reference commit or tag>"
|
echo "$0 <reference commit or tag>"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -25,7 +25,6 @@ if [ $# -ne 0 ]; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
SCRIPTS=$(find ${SRC_PATH} -name "*.sh" -not -path "${SRC_PATH}/.git/*")
|
SCRIPTS=$(find ${SRC_PATH} -name "*.sh" -not -path "${SRC_PATH}/.git/*")
|
||||||
for script in $SCRIPTS; do
|
for script in $SCRIPTS; do
|
||||||
echo $script
|
echo $script
|
||||||
|
|||||||
@@ -96,11 +96,9 @@ function do_download {
|
|||||||
dir=$4
|
dir=$4
|
||||||
|
|
||||||
if [ ! -f $file ]; then
|
if [ ! -f $file ]; then
|
||||||
if command -v curl 2>&1 >/dev/null
|
if command -v curl 2>&1 >/dev/null; then
|
||||||
then
|
|
||||||
curl -o $file $url/$file
|
curl -o $file $url/$file
|
||||||
elif command -v wget 2>&1 >/dev/null
|
elif command -v wget 2>&1 >/dev/null; then
|
||||||
then
|
|
||||||
wget -O $file $url/$file
|
wget -O $file $url/$file
|
||||||
else
|
else
|
||||||
echo "Could not find wget or curl, exiting"
|
echo "Could not find wget or curl, exiting"
|
||||||
@@ -109,7 +107,7 @@ function do_download {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $file.sha256sum ]; then
|
if [ ! -f $file.sha256sum ]; then
|
||||||
echo "$hash $file" > $file.sha256sum
|
echo "$hash $file" >$file.sha256sum
|
||||||
fi
|
fi
|
||||||
|
|
||||||
sha256sum -c $file.sha256sum
|
sha256sum -c $file.sha256sum
|
||||||
|
|||||||
Reference in New Issue
Block a user