We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f84de88 commit 017a933Copy full SHA for 017a933
scripts/tests/upload_rcpsnaps.sh
@@ -46,8 +46,8 @@ for FILE_PATH in "${DIR_PATH}"/*.rpcsnap.json; do
46
fi
47
done
48
49
-# Sort the file lexicographically
50
-sort -o "$TEST_SNAPSHOTS" "$TEST_SNAPSHOTS"
+# Sort the file in lexicographical order and remove dup lines
+sort -u -o "$TEST_SNAPSHOTS" "$TEST_SNAPSHOTS"
51
52
read -r -p "🧪 Do you want to run 'cargo test --lib -- --test rpc_regression_tests --nocapture'? [y/N] " answer
53
case "$answer" in
0 commit comments