Skip to content

Commit

Permalink
Use sh instead bash for alpine linux
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallku committed Jul 29, 2024
1 parent ef9622c commit 8a23892
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/blog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"sideEffects": false,
"scripts": {
"dev": "next dev -p 3443",
"prebuild": "bash scripts/prebuild.sh",
"prebuild": "sh scripts/prebuild.sh",
"build": "next build",
"test": "vitest run",
"test:e2e": "CI=true playwright test",
Expand Down
2 changes: 1 addition & 1 deletion apps/blog/scripts/prebuild.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

# Copy .env.example to .env if .env does not exist
if [ ! -f .env ]; then
Expand Down

1 comment on commit 8a23892

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Visual regression test result - success

Component Story Success Viewport MisMatch Percentage
components-button string-children phone 0.00%
components-button string-children tablet 0.09%
input-input default phone 0.00%
input-input default tablet 0.00%
input-input line phone 0.00%
input-input line tablet 0.00%
input-input box phone 0.00%
input-input box tablet 0.00%
input-textarea line phone 0.00%
input-textarea line tablet 0.00%
input-textarea box phone 0.00%
input-textarea box tablet 0.00%
typography-typography default phone 0.00%
typography-typography default tablet 0.00%

Please sign in to comment.