aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/dist.rs
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-08-29 15:47:13 +0100
committerVeetaha <[email protected]>2020-08-29 15:47:13 +0100
commit4bc56ebd936cc1b580ef88c40eead2ba3209cdbe (patch)
treec0224114ff4821fae9fa4cc19e1c67106d242f7c /xtask/src/dist.rs
parent8146700f82b75cd3cda5191108b4277a9908c744 (diff)
Replace custom `not_bash::fs2` setup with fs_err crate
Diffstat (limited to 'xtask/src/dist.rs')
-rw-r--r--xtask/src/dist.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/dist.rs b/xtask/src/dist.rs
index 01d903cde..aa7d94967 100644
--- a/xtask/src/dist.rs
+++ b/xtask/src/dist.rs
@@ -115,7 +115,7 @@ impl Patch {
115 self 115 self
116 } 116 }
117 117
118 fn commit(&self) -> Result<()> { 118 fn commit(&self) -> io::Result<()> {
119 fs2::write(&self.path, &self.contents) 119 fs2::write(&self.path, &self.contents)
120 } 120 }
121} 121}