summaryrefslogtreecommitdiff
path: root/src/args.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/args.rs')
-rw-r--r--src/args.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/args.rs b/src/args.rs
index 39354f6..a7aa5c6 100644
--- a/src/args.rs
+++ b/src/args.rs
@@ -34,6 +34,10 @@ pub struct InstallArgs {
/// Name of the executable
#[arg(long)]
pub executable: Option<String>,
+
+ /// Use --from as repository slug to fetch from GitHub
+ #[arg(long, default_value_t = false)]
+ pub github: bool,
}
#[derive(Debug, Args)]