Skip to content

Commit dc142ae

Browse files
committed
Remove debug info
1 parent 46bf571 commit dc142ae

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/cli.yml

-4
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,6 @@ jobs:
7070
USER=$(whoami)
7171
sudo chown -R $USER $(pg_config --sharedir)
7272
sudo chown -R $USER $(pg_config --pkglibdir)
73-
which pg_config
74-
ls -lah $(pg_config --sharedir)
75-
ls -lah $(pg_config --pkglibdir)
76-
true && echo "done!"
7773
cargo test -- --nocapture
7874
7975
cargo_publish:

cli/src/commands/install.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ pub struct InstallCommand {
7777

7878
impl InstallCommand {
7979
pub fn pgconfig(&self) -> Result<PgConfig> {
80-
let pg_config_path = dbg!(self.pg_config.clone())
80+
let pg_config_path = self
81+
.pg_config
82+
.clone()
8183
.map(Ok)
82-
.unwrap_or_else(|| dbg!(which::which("pg_config")))?;
83-
84-
dbg!(&pg_config_path);
84+
.unwrap_or_else(|| which::which("pg_config"))?;
8585

8686
Ok(PgConfig { pg_config_path })
8787
}
@@ -475,8 +475,8 @@ async fn install_trunk_archive(
475475
config: InstallConfig,
476476
) -> Result<()> {
477477
// Handle symlinks
478-
let sharedir = dbg!(std::fs::canonicalize(&config.sharedir))?;
479-
let package_lib_dir = dbg!(std::fs::canonicalize(&config.package_lib_dir))?;
478+
let sharedir = std::fs::canonicalize(&config.sharedir)?;
479+
let package_lib_dir = std::fs::canonicalize(&config.package_lib_dir)?;
480480

481481
// First pass: get to the manifest
482482
// Because we're going over entries with `Seek` enabled, we're not reading everything.

0 commit comments

Comments
 (0)