diff options
author | 2022-08-19 00:35:26 -0700 | |
---|---|---|
committer | 2022-08-19 00:35:26 -0700 | |
commit | 0a0f8ff41c075ddc4838badc2e3f9f786db6a799 (patch) | |
tree | ded15dc6aba51531a1ac1fabda58579b1d5e5de8 | |
parent | fe7180bc74ac0ea9d2ec91f8446c1780d21c5973 (diff) | |
download | bun-v0.1.10.tar.gz bun-v0.1.10.tar.zst bun-v0.1.10.zip |
Update bun init testbun-v0.1.10
-rw-r--r-- | test/apps/bun-init-check.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/apps/bun-init-check.sh b/test/apps/bun-init-check.sh index 3eac65615..d0077cb60 100644 --- a/test/apps/bun-init-check.sh +++ b/test/apps/bun-init-check.sh @@ -15,10 +15,10 @@ if (($?)); then exit 1 fi -SHASUM_RESULT=$(cat index.ts .gitignore tsconfig.json package.json README.md | shasum) +SHASUM_RESULT=$(cat index.ts .gitignore tsconfig.json package.json | shasum) # This test will fail when the minor version of Bun changes. -if [[ "${SHASUM_RESULT}" != "b1548bb4e806f0506fd1b27ae8901d2e84926774 -" ]]; then +if [[ "${SHASUM_RESULT}" != "10eabf5101a3ef999bd67232a7af33542c525ec6 -" ]]; then echo -e "Bun init shasum mismatch\n expected: b1548bb4e806f0506fd1b27ae8901d2e84926774\n actual: ${SHASUM_RESULT}" exit 1 fi |