Skip to content

Commit 266ca29

Browse files
committed
Patch to remove nightly channel rquirement for cargo when building or running benchmarks
1 parent 7bc1d9c commit 266ca29

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

benchmarks/run-all.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
set -e
88
PROJECT_DIR=$(dirname "$0" | xargs dirname)
9-
SIGHTGLASS="cargo +nightly run --bin sightglass-cli --"
9+
SIGHTGLASS="cargo run --bin sightglass-cli --"
1010
ENGINE=$PROJECT_DIR/engines/wasmtime/libengine.so
1111
export RUST_LOG=debug
1212

benchmarks/run-native.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -e
99
BENCHMARKS_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
1010
SIGHTGLASS_BASE=$(dirname $BENCHMARKS_DIR)
1111

12-
SIGHTGLASS="cargo +nightly run --release --bin sightglass-cli --"
12+
SIGHTGLASS="cargo run --release --bin sightglass-cli --"
1313

1414
ENGINE=$SIGHTGLASS_BASE/engines/native/libengine.so
1515

0 commit comments

Comments
 (0)