mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-14 11:44:45 +08:00
25b8738c05
Ran shellcheck and applied suggested fixes for prevention of globbing and word splitting. https://www.shellcheck.net/wiki/SC2046 https://www.shellcheck.net/wiki/SC2086
18 lines
No EOL
455 B
Bash
Executable file
18 lines
No EOL
455 B
Bash
Executable file
#! /bin/bash
|
|
# This script is used in release-it as hook
|
|
# Change how this script is triggered by editing .release-it.json
|
|
# NOTE: Please make sure working directory is in root of repo
|
|
|
|
set -e
|
|
|
|
file_list=$(cat .github/files_to_copy)
|
|
for f in $file_list
|
|
do
|
|
echo "**** checking $f ****"
|
|
if [ ! -f "$f" ] && [ ! -d "$f" ]; then
|
|
echo "**** $f doesn't exist, skipping release ****"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
echo "**** pre-check is finished ****" |