Skip to content

Commit 91dd0f1

Browse files
committed
Rename key storage example to be consistent
Signed-off-by: Wiktor Kwapisiewicz <wiktor@metacode.biz>
1 parent b70753f commit 91dd0f1

File tree

5 files changed

+3
-7
lines changed

5 files changed

+3
-7
lines changed

.github/workflows/misc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# If the example doesn't compile the integration test will
3333
# be stuck. Check for compilation issues earlier to abort the job
3434
- name: Check if the example compiles
35-
run: cargo check --example key_storage
35+
run: cargo check --example key-storage
3636
- name: Run integration tests
3737
run: ./tests/sign-and-verify.sh
3838
if: ${{ ! matrix.windows }}

Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@ default = ["agent"]
3939
codec = ["tokio-util"]
4040
agent = ["futures", "log", "tokio", "async-trait", "codec"]
4141

42-
[[example]]
43-
name = "key_storage"
44-
required-features = ["agent"]
45-
4642
[dev-dependencies]
4743
env_logger = "0.11.0"
4844
rand = "0.8.5"
File renamed without changes.

tests/sign-and-verify-win.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
rem del /F /Q Cargo.toml.sig id_rsa id_rsa.pub agent.pub
22

3-
cmd /c "START /b cargo run --example key_storage"
3+
cmd /c "START /b cargo run --example key-storage"
44

55
@echo off
66
:waitloop

tests/sign-and-verify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -euxo pipefail
44

55
rm -rf ssh-agent.sock Cargo.toml.sig id_rsa id_rsa.pub agent.pub ca_user_key ca_user_key.pub id_rsa-cert.pub
6-
RUST_LOG=info cargo run --example key_storage &
6+
RUST_LOG=info cargo run --example key-storage &
77

88
while [ ! -e ssh-agent.sock ]; do
99
echo "Waiting for ssh-agent.sock"

0 commit comments

Comments
 (0)