diff --git a/cargo-build-bpf b/cargo-build-bpf index 9793456ea2..0ef191aa1d 100755 --- a/cargo-build-bpf +++ b/cargo-build-bpf @@ -11,9 +11,9 @@ done set -ex if [[ ! -f "$here"/sdk/bpf/syscalls.txt ]]; then - "$here"/cargo build --manifest-path "$here"/programs/bpf_loader/gen-syscall-list/Cargo.toml + cargo build --manifest-path "$here"/programs/bpf_loader/gen-syscall-list/Cargo.toml fi if [[ ! -f "$here"/target/debug/cargo-build-sbf ]]; then - "$here"/cargo build --manifest-path "$here"/sdk/cargo-build-sbf/Cargo.toml + cargo build --manifest-path "$here"/sdk/cargo-build-sbf/Cargo.toml fi -exec "$here"/cargo run --manifest-path "$here"/sdk/cargo-build-bpf/Cargo.toml -- $maybe_bpf_sdk "$@" +exec cargo run --manifest-path "$here"/sdk/cargo-build-bpf/Cargo.toml -- $maybe_bpf_sdk "$@" diff --git a/cargo-build-sbf b/cargo-build-sbf index 8b654f0109..1e22694027 100755 --- a/cargo-build-sbf +++ b/cargo-build-sbf @@ -11,6 +11,6 @@ done set -ex if [[ ! -f "$here"/sdk/sbf/syscalls.txt ]]; then - "$here"/cargo build --manifest-path "$here"/programs/bpf_loader/gen-syscall-list/Cargo.toml + cargo build --manifest-path "$here"/programs/bpf_loader/gen-syscall-list/Cargo.toml fi -exec "$here"/cargo run --manifest-path "$here"/sdk/cargo-build-sbf/Cargo.toml -- $maybe_sbf_sdk "$@" +exec cargo run --manifest-path "$here"/sdk/cargo-build-sbf/Cargo.toml -- $maybe_sbf_sdk "$@" diff --git a/cargo-test-bpf b/cargo-test-bpf index 3b1266bd55..78b5a36739 100755 --- a/cargo-test-bpf +++ b/cargo-test-bpf @@ -12,9 +12,9 @@ done export CARGO_BUILD_BPF="$here"/cargo-build-bpf set -x if [[ ! -f "$here"/target/debug/cargo-build-sbf ]]; then - "$here"/cargo build --manifest-path "$here"/sdk/cargo-build-sbf/Cargo.toml + cargo build --manifest-path "$here"/sdk/cargo-build-sbf/Cargo.toml fi if [[ ! -f "$here"/target/debug/cargo-test-sbf ]]; then - "$here"/cargo build --manifest-path "$here"/sdk/cargo-test-sbf/Cargo.toml + cargo build --manifest-path "$here"/sdk/cargo-test-sbf/Cargo.toml fi -exec "$here"/cargo run --manifest-path "$here"/sdk/cargo-test-bpf/Cargo.toml -- $maybe_bpf_sdk "$@" +exec cargo run --manifest-path "$here"/sdk/cargo-test-bpf/Cargo.toml -- $maybe_bpf_sdk "$@" diff --git a/cargo-test-sbf b/cargo-test-sbf index f54df75d86..fea13b3cd0 100755 --- a/cargo-test-sbf +++ b/cargo-test-sbf @@ -11,4 +11,4 @@ done export CARGO_BUILD_SBF="$here"/cargo-build-sbf set -x -exec "$here"/cargo run --manifest-path "$here"/sdk/cargo-test-sbf/Cargo.toml -- $maybe_sbf_sdk "$@" +exec cargo run --manifest-path "$here"/sdk/cargo-test-sbf/Cargo.toml -- $maybe_sbf_sdk "$@"