summaryrefslogtreecommitdiff
path: root/src/bin/commit-msg.rs
blob: 488613eb8158d9cb4efff259307e3132b8a8b8ac (plain)
1
2
3
4
5
6
use std::env;

fn main() {
    let args: Vec<_> = env::args().skip(1).collect();
    println!("commit-msg called with {:?}", args);
}