summaryrefslogtreecommitdiffstats
path: root/sqv
diff options
context:
space:
mode:
Diffstat (limited to 'sqv')
-rw-r--r--sqv/build.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/sqv/build.rs b/sqv/build.rs
index c0f21c05..ea6513b1 100644
--- a/sqv/build.rs
+++ b/sqv/build.rs
@@ -1,6 +1,7 @@
extern crate clap;
use std::env;
+use std::fs;
use clap::Shell;
mod sqv_cli {
@@ -12,6 +13,7 @@ fn main() {
None => return,
Some(outdir) => outdir,
};
+ fs::create_dir_all(&outdir).unwrap();
let mut sqv = sqv_cli::build();
for shell in &[Shell::Bash, Shell::Fish, Shell::Zsh, Shell::PowerShell,
Shell::Elvish] {