Skip to content

Commit

Permalink
no slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmorley committed Jun 29, 2023
1 parent b1ed868 commit 6b2bb60
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ jobs:
- uses: actions/checkout@v3
- name: Install Rust
run: rustup update 1.67.1 --no-self-update && rustup default 1.67.1
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
cache-all-crates: true
- name: Install cargo-dist
run: ${{ matrix.install-dist }}
- name: Run cargo-dist
Expand Down
6 changes: 3 additions & 3 deletions oktaws/src/aws/profile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ foo=bar"#
Location:
{}:61:24",
PathBuf::from("oktaws/src/aws/profile.rs").display()
PathBuf::from_iter(["oktaws", "src", "aws", "profile.rs"]).display()
),
);

Expand Down Expand Up @@ -293,7 +293,7 @@ Caused by:
Location:
{}:34:24",
tempfile.path().display(),
PathBuf::from("oktaws/src/aws/profile.rs").display()
PathBuf::from_iter(["oktaws", "src", "aws", "profile.rs"]).display()
)
);

Expand Down Expand Up @@ -331,7 +331,7 @@ Caused by:
Location:
{}:34:24",
tempfile.path().display(),
PathBuf::from("oktaws/src/aws/profile.rs").display()
PathBuf::from_iter(["oktaws", "src", "aws", "profile.rs"]).display()
)
);

Expand Down

0 comments on commit 6b2bb60

Please sign in to comment.