]> git.bitcoin.ninja Git - rust-lightning/commitdiff
Fix misc `shellcheck` complaints
authorElias Rohrer <dev@tnull.de>
Thu, 25 Apr 2024 13:32:32 +0000 (15:32 +0200)
committerElias Rohrer <dev@tnull.de>
Tue, 13 Aug 2024 06:50:30 +0000 (08:50 +0200)
ci/check-compiles.sh
ci/check-each-commit.sh
ci/rustfmt.sh
contrib/download_bitcoind_electrs.sh
contrib/run-rustfmt.sh

index 2fe62be787ed60e95fe45af20651d3fc63843a42..7ad9f4df1961cf0b112ef2ce810438d45d14cd4f 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 set -e
 set -x
-echo Testing $(git log -1 --oneline)
+echo "Testing $(git log -1 --oneline)"
 cargo check
 cargo doc
 cargo doc --document-private-items
index e4723c837ede02fb0835d919fddd4757c9159bc0..42e3d0e76e26e15a92af03c44deb816ff068f8b4 100755 (executable)
@@ -12,4 +12,4 @@ if [ "$(git log --pretty="%H %D" | grep "^[0-9a-f]*.* $1")" = "" ]; then
        echo "It seems like the current checked-out commit is not based on $1"
        exit 1
 fi
-git rebase --exec ci/check-compiles.sh $1
+git rebase --exec ci/check-compiles.sh "$1"
index 56384aae3c5b8c5024e21b9f807dacacf2618558..1a9053a28dd6fe2ee36a2c4ad3ed9e168faf24a9 100755 (executable)
@@ -14,8 +14,8 @@ VERS=""
 
 # Run fmt
 TMP_FILE=$(mktemp)
-find . -name '*.rs' -type f |sort >$TMP_FILE
-for file in $(comm -23 $TMP_FILE rustfmt_excluded_files); do
+find . -name '*.rs' -type f |sort >"$TMP_FILE"
+for file in $(comm -23 "$TMP_FILE" rustfmt_excluded_files); do
        echo "Checking formatting of $file"
-       rustfmt $VERS --edition 2021 --check $file
+       rustfmt $VERS --edition 2021 --check "$file"
 done
index 03132330086ccf32a179e9b59845cd5a1905079f..8b938a563d379d30c330fe4a90c4edafda245dc8 100755 (executable)
@@ -22,7 +22,8 @@ elif [[ "$HOST_PLATFORM" == *darwin* ]]; then
        BITCOIND_DL_FILE_NAME=bitcoin-"$BITCOIND_VERSION"-x86_64-apple-darwin.tar.gz
        BITCOIND_DL_HASH="1acfde0ec3128381b83e3e5f54d1c7907871d324549129592144dd12a821eff1"
 else
-       echo "\n\nUnsupported platform: $HOST_PLATFORM Exiting.."
+       printf "\n\n"
+       echo "Unsupported platform: $HOST_PLATFORM Exiting.."
        exit 1
 fi
 
index 823e9e025b61fd63a7036f31aee87db57b9a9846..ffce4242f3ef24d5b5678436eba155ad6b403213 100755 (executable)
@@ -14,8 +14,8 @@ VERS=""
 
 # Run fmt
 TMP_FILE=$(mktemp)
-find . -name '*.rs' -type f |sort >$TMP_FILE
-for file in $(comm -23 $TMP_FILE rustfmt_excluded_files); do
+find . -name '*.rs' -type f |sort >"$TMP_FILE"
+for file in $(comm -23 "$TMP_FILE" rustfmt_excluded_files); do
        echo "Formatting $file..."
-       rustfmt $VERS --edition 2021 $file
+       rustfmt $VERS --edition 2021 "$file"
 done