Skip to content

Commit 7513d38

Browse files
committed
sh should be banned
1 parent ad73c37 commit 7513d38

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/e2e-tests.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
branches:
1010
- main
1111
merge_group:
12+
workflow_dispatch:
1213

1314
jobs:
1415
tests:

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ build-all: ## Builds all production contracts.
5858
build-test-contracts: ## Builds contracts used in e2e-tests
5959
@for d in $(TEST_PATHS); do \
6060
echo "Building $$d contract" ; \
61-
if [[ "$$d" = $(TEST_CONTRACTS)/psp22 ]]; then \
61+
if [ "$$d" = "$(TEST_CONTRACTS)/psp22" ]; then \
6262
cargo contract build --quiet --manifest-path $$d/Cargo.toml --release --features "contract"; \
6363
else \
6464
cargo contract build --quiet --manifest-path $$d/Cargo.toml --release; \

0 commit comments

Comments
 (0)