summaryrefslogtreecommitdiffstats
path: root/build.rs
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2024-01-01 22:20:40 +0000
committerGitHub <noreply@github.com>2024-01-01 17:20:40 -0500
commit228da99489f876780feaf829f82933e07a37c084 (patch)
tree5fdb77451f6d79ead3469442873345fffe68c5ad /build.rs
parente71048e394626d8a2ae148e8bc92a11aeda1f116 (diff)
refactor: move around configuration-related files (#1370)
* rename general utils file * refactor: move around some configuration files * more shuffling around * fix some ugly formatting
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.rs b/build.rs
index 58df60fd..1d13c701 100644
--- a/build.rs
+++ b/build.rs
@@ -7,7 +7,7 @@ use clap_complete::{generate_to, shells::Shell, Generator};
use clap_complete_fig::Fig;
use clap_complete_nushell::Nushell;
-include!("src/args.rs");
+include!("src/options/args.rs");
fn create_dir(dir: &Path) -> io::Result<()> {
let res = fs::create_dir_all(dir);