Skip to content

Commit

Permalink
fixed invalid directories
Browse files Browse the repository at this point in the history
  • Loading branch information
Bullrich committed Jun 17, 2024
1 parent 78d8a9b commit a6f3394
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 2 additions & 1 deletion scripts/lib/bench-all-cumulus.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
# default RUST_LOG is warn, but could be overridden
export RUST_LOG="${RUST_LOG:-error}"

. "$BENCH_ROOT_DIR/../utils.sh"
THIS_DIR=$(dirname "${BASH_SOURCE[0]}")
. "$THIS_DIR/../command-utils.sh"

POLKADOT_PARACHAIN="./target/$profile/polkadot-parachain"

Expand Down
3 changes: 1 addition & 2 deletions scripts/lib/bench-overhead.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#!/bin/bash

THIS_DIR=$(dirname "${BASH_SOURCE[0]}")
. "$THIS_DIR/../../cmd_runner.sh"
. "$THIS_DIR/../../utils.sh"
. "$THIS_DIR/../command-utils.sh"

bench_overhead_common_args=(
--
Expand Down
3 changes: 1 addition & 2 deletions scripts/lib/bench-pallet.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#!/bin/bash

THIS_DIR=$(dirname "${BASH_SOURCE[0]}")
. "$THIS_DIR/../../cmd_runner.sh"
. "$THIS_DIR/../../utils.sh"
. "$THIS_DIR/../command-utils.sh"

bench_pallet_common_args=(
--
Expand Down

0 comments on commit a6f3394

Please # to comment.