File tree 2 files changed +6
-10
lines changed
2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 70
70
USER=$(whoami)
71
71
sudo chown -R $USER $(pg_config --sharedir)
72
72
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!"
77
73
cargo test -- --nocapture
78
74
79
75
cargo_publish :
Original file line number Diff line number Diff line change @@ -77,11 +77,11 @@ pub struct InstallCommand {
77
77
78
78
impl InstallCommand {
79
79
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 ( )
81
83
. 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" ) ) ?;
85
85
86
86
Ok ( PgConfig { pg_config_path } )
87
87
}
@@ -475,8 +475,8 @@ async fn install_trunk_archive(
475
475
config : InstallConfig ,
476
476
) -> Result < ( ) > {
477
477
// 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 ) ?;
480
480
481
481
// First pass: get to the manifest
482
482
// Because we're going over entries with `Seek` enabled, we're not reading everything.
You can’t perform that action at this time.
0 commit comments