Skip to content

Commit

Permalink
Support mac
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuichiueda committed Dec 30, 2023
1 parent d7ef159 commit 0740a0e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: macos
name: macos-latest

on:
push:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: linux
name: ubuntu-latest

on:
push:
Expand Down
4 changes: 2 additions & 2 deletions test/test.bash
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ res=$($com <<< '(echo hoge; false)')
res=$($com <<< 'cd / ; (cd /etc); pwd')
[ "$res" = / ] || err $LINENO

res=$($com <<< 'cd / ; { cd /etc ; } ; pwd')
[ "$res" = /etc ] || err $LINENO
res=$($com <<< 'cd ; { cd / ; } ; pwd')
[ "$res" = / ] || err $LINENO

res=$($com <<< '( )')
[ "$?" = 2 ] || err $LINENO
Expand Down

0 comments on commit 0740a0e

Please sign in to comment.