소스 검색

fix: we use the nightly flake so we don't need +nightly (#1288)

tsk 2 일 전
부모
커밋
df468139cb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      .github/workflows/nightly-rustfmt.yml

+ 1 - 1
.github/workflows/nightly-rustfmt.yml

@@ -38,7 +38,7 @@ jobs:
           nix develop -i -L .#nightly --command bash -c '
             # Force use of Nix-provided rustfmt
             export RUSTFMT=$(command -v rustfmt)
-            cargo +nightly fmt
+            cargo fmt
           '
           # Manually remove trailing whitespace
           git ls-files -- '*.rs' -z | xargs -0 sed -E -i'' -e 's/[[:space:]]+$//'