-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #12865 - hi-rustin:rustin-patch-remove, r=epage
Add better error message when it can not find the search section
- Loading branch information
Showing
6 changed files
with
36 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Removing invalid_dependency_name from dependencies | ||
error: the dependency `invalid_dependency_name` could not be found in `dependencies`. | ||
error: the dependency `invalid_dependency_name` could not be found in `dependencies` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Removing docopt from build-dependencies | ||
error: the dependency `docopt` could not be found in `build-dependencies`. | ||
error: the dependency `docopt` could not be found in `build-dependencies`; it is present in `dependencies` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Removing semver from dev-dependencies | ||
error: the dependency `semver` could not be found in `dev-dependencies`. | ||
error: the dependency `semver` could not be found in `dev-dependencies`; it is present in `dependencies` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Removing dbus from dependencies for target `powerpc-unknown-linux-gnu` | ||
error: the dependency `dbus` could not be found in `target.powerpc-unknown-linux-gnu.dependencies`. | ||
error: the dependency `dbus` could not be found in `target.powerpc-unknown-linux-gnu.dependencies`; it is present in `target.x86_64-unknown-linux-gnu.dependencies` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Removing toml from dependencies for target `x86_64-unknown-linux-gnu` | ||
error: the dependency `toml` could not be found in `target.x86_64-unknown-linux-gnu.dependencies`. | ||
error: the dependency `toml` could not be found in `target.x86_64-unknown-linux-gnu.dependencies`; it is present in `dependencies` |