Skip to content

Commit 604887a

Browse files
committed
fix
1 parent 834702b commit 604887a

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

justfiles/testing.just

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ lint: format
5858
#!/usr/bin/env bash
5959
set -euo pipefail
6060

61-
if [ "$GITHUB_ACTIONS" = "true" ]; then
61+
if [ "${GITHUB_ACTIONS:-}" = "true" ]; then
6262
just clippy
6363
else
64-
just clippy_fix
64+
just clippy-fix
6565
fi
6666

6767

src/bin/cratesfyi.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
use anyhow::{Context as _, Result, anyhow};
22
use clap::{Parser, Subcommand, ValueEnum};
33
use docs_rs::{
4-
<<<<<<< HEAD
54
Config, Context, Index, PackageKind, RustwideBuilder,
6-
db::{self, CrateId, Overrides, add_path_into_database, types::version::Version},
7-
=======
8-
Config, Context, PackageKind, RustwideBuilder,
95
db::{self, CrateId, Overrides, ReleaseId, add_path_into_database, types::version::Version},
10-
>>>>>>> master
116
start_background_metrics_webserver, start_web_server,
127
utils::{
138
ConfigName, get_config, get_crate_pattern_and_priority, list_crate_priorities,

0 commit comments

Comments
 (0)