use shfmt

This commit is contained in:
Aki Kareha 2025-02-22 09:14:17 +09:00
parent a129a173b7
commit c1ee761a65
No known key found for this signature in database
GPG Key ID: 53C60D74F1899BF0
2 changed files with 6 additions and 4 deletions

2
format Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
shfmt -i 2 -ci -w update

8
update
View File

@ -12,20 +12,20 @@ EXIT_SUCCESS=0
EXIT_FAILURE=1
# Verify the required runtime environment
if ! command -v curl > /dev/null; then
if ! command -v curl >/dev/null; then
echo "This script requires \"curl\" to be installed. Please install it and try again."
exit $EXIT_FAILURE
fi
if ! command -v nkf > /dev/null; then
if ! command -v nkf >/dev/null; then
echo "This script requires \"nkf\" to be installed. Please install it and try again."
exit $EXIT_FAILURE
fi
# Run
curl -sS -L -o $TMP_CSV_FILE $CSV_URL
if ! diff -q $RAW_CSV_FILE $TMP_CSV_FILE > /dev/null 2>&1; then
if ! diff -q $RAW_CSV_FILE $TMP_CSV_FILE >/dev/null 2>&1; then
mv $TMP_CSV_FILE $RAW_CSV_FILE
nkf -w $RAW_CSV_FILE > $CSV_FILE
nkf -w $RAW_CSV_FILE >$CSV_FILE
else
rm $TMP_CSV_FILE
fi