Skip to content

Commit 17280c8

Browse files
committed
[Fix] Do not assume that bun is installed at /home/user.
1 parent 3b40593 commit 17280c8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/pr_javascript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
working-directory: ./test
2525
steps:
2626
- name: Build object program
27-
run: ~/.bun/bin/bun build hd.js --compile --outfile hd
27+
run: $BUN_INSTALL/bin/bun build hd.js --compile --outfile hd
2828
working-directory: ./hd/javascript
2929
- name: Build host program
3030
run: ./test_maker .test/hd.test

.github/workflows/push_javascript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: gcc -o test_maker test_maker.c
2222

2323
- name: Build object program
24-
run: ~/.bun/bin/bun build hd.js --compile --outfile hd
24+
run: $BUN_INSTALL/bin/bun build hd.js --compile --outfile hd
2525
working-directory: ./hd/javascript
2626
- name: Build host program
2727
run: ./test_maker .test/hd.test

0 commit comments

Comments
 (0)