Skip to content

Commit

Permalink
Fix github URL for graphql-parser
Browse files Browse the repository at this point in the history
Summary:
Remove an extra forward slash in the URL. Is this a typo?

https://github.com/graphql-rust//graphql-parser --> https://github.com/graphql-rust/graphql-parser

I'm not sure how this was working, I keep running into this error on trunk and cannot do the add/upgrade flow.
```
[henrywang8@devbig3694.ash8 ~/local/fbsource (1694a733a)]$ fbcode/common/rust/tools/reindeer/vendor
You may need to remove the insteadOf block from your .gitconfig
Eden prefetch...
Setting up Eden redirects...
Vendoring /home/henrywang8/local/fbsource/third-party/rust...
[ERROR reindeer] `cd "/home/henrywang8/local/fbsource/third-party/rust" && CARGO_HOME="/home/henrywang8/local/fbsource/third-party/rust/.cargo" RUSTC="/home/henrywang8/local/fbsource/third-party/rust/../../xplat/rust/toolchain/current/basic/bin/rustc" RUSTC_BOOTSTRAP="1" "/home/henrywang8/local/fbsource/third-party/rust/../../xplat/rust/toolchain/current/basic/bin/cargo" "vendor" "--manifest-path" "/home/henrywang8/local/fbsource/third-party/rust/Cargo.toml" "vendor" "--versioned-dirs" "-Zbindeps"` failed:
        Updating git repository `https://github.com/graphql-rust//graphql-parser`
    fatal: remote error:
     graphql-rust//graphql-parser is not a valid repository name
    Visit https://support.github.com/ for help
    error: failed to sync

    Caused by:
      failed to load pkg lockfile

    Caused by:
      failed to load source for dependency `graphql-parser`

    Caused by:
      Unable to update https://github.com/graphql-rust//graphql-parser?rev=8d76425d83c40670570cc325f57c730262f07456#8d76425d

    Caused by:
      failed to fetch into: /home/henrywang8/local/fbsource/third-party/rust/.cargo/git/db/graphql-parser-c1e86e4340dd4183

    Caused by:
      process didn't exit successfully: `git fetch --force --update-head-ok 'https://github.com/graphql-rust//graphql-parser' '+8d76425d83c40670570cc325f57c730262f07456:refs/commit/8d76425d83c40670570cc325f57c730262f07456'` (exit status: 128)

Cleaning up Eden redirects...
Repo cleanup...
```

Reviewed By: zertosh

Differential Revision: D67636897

fbshipit-source-id: dcf83df17a2e94c53ee6fd3b06fe8ddd2eef6176
  • Loading branch information
henrywang8atfbdotcom authored and facebook-github-bot committed Dec 26, 2024
1 parent d2fc05b commit 723c91e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cbindgen = { git = "https://github.com/mozilla/cbindgen.git", rev = "89a9faa97cc
cxx = { package = "cxx", git = "https://github.com/facebookexperimental/cxx.git", rev = "2ea39c564284a70fdc1793fd72c442433e5a2638" }
cxx-build = { package = "cxx-build", git = "https://github.com/facebookexperimental/cxx.git", rev = "2ea39c564284a70fdc1793fd72c442433e5a2638" }
displaydoc = { git = "https://github.com/yaahc/displaydoc", rev = "7dc6e324b1788a6b7fb9f3a1953c512923a3e9f0" }
graphql-parser = { git = "https://github.com/graphql-rust//graphql-parser", rev = "8d76425d83c40670570cc325f57c730262f07456" }
graphql-parser = { git = "https://github.com/graphql-rust/graphql-parser", rev = "8d76425d83c40670570cc325f57c730262f07456" }
imgui = { git = "https://github.com/imgui-rs/imgui-rs.git", rev = "2abba18c08fb5e70c699ba7992342e7ff8573b09" }
imgui-sys = { git = "https://github.com/imgui-rs/imgui-rs.git", rev = "2abba18c08fb5e70c699ba7992342e7ff8573b09" }
lru-disk-cache = { git = "https://github.com/mozilla/sccache", rev = "fdbf843d174c6796d736b2b61dab0297670390f8" }
Expand Down

0 comments on commit 723c91e

Please sign in to comment.