Skip to content

Commit 949b1a4

Browse files
committed
Rename cratesfyi binary to docsrs
1 parent 3461ed0 commit 949b1a4

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ name = "compression"
126126
harness = false
127127

128128
[[bin]]
129-
name = "cratesfyi"
129+
name = "docsrs"
130+
path = "src/main.rs"
130131
test = false
131132
doc = false

dockerfiles/entrypoint.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export PATH="$PATH:/build/target/release"
1313
set +e
1414
failed=0
1515
while true; do
16-
if ! cratesfyi database migrate; then
16+
if ! docsrs database migrate; then
1717
((failed=failed + 1))
1818
if [ "${failed}" -eq 5 ]; then
1919
exit 1
@@ -33,6 +33,6 @@ if ! [ -d "${DOCSRS_PREFIX}/crates.io-index/.git" ]; then
3333
git --git-dir="$DOCSRS_PREFIX/crates.io-index/.git" branch crates-index-diff_last-seen
3434
fi
3535

36-
cratesfyi build update-toolchain --only-first-time
36+
docsrs build update-toolchain --only-first-time
3737

38-
cratesfyi "$@"
38+
docsrs "$@"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ enum Toggle {
8181

8282
#[derive(Debug, Clone, PartialEq, Eq, StructOpt)]
8383
#[structopt(
84-
name = "cratesfyi",
84+
name = "docsrs",
8585
about = env!("CARGO_PKG_DESCRIPTION"),
8686
version = docs_rs::BUILD_VERSION,
8787
rename_all = "kebab-case",

0 commit comments

Comments
 (0)