Skip to content

Commit

Permalink
build: use correct path to built soroban
Browse files Browse the repository at this point in the history
  • Loading branch information
chadoh committed Aug 22, 2023
1 parent fd4d5c5 commit 732d03f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bindings-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: rustup update
- run: cargo build && ls target/bin
- run: cargo build && ls target/debug
- run: rustup target add wasm32-unknown-unknown
- run: make build-test-wasms
- run: npm ci && npm run test
Expand Down
2 changes: 1 addition & 1 deletion cmd/crates/soroban-spec-typescript/ts-tests/soroban
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

../../../../target/bin/soroban "$@"
../../../../target/debug/soroban "$@"

0 comments on commit 732d03f

Please sign in to comment.