Skip to content

Commit

Permalink
WIP: doc: show license in CLI help
Browse files Browse the repository at this point in the history
Resolves #26.
  • Loading branch information
ErichDonGubler committed Oct 30, 2021
1 parent b9d6b72 commit 1908b00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/cpsc/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
// You should have received a copy of the GNU General Public License along with Capisco. If not,
// see <https://www.gnu.org/licenses/>.
use crate::runner::{git::RepoSource, RepoName};
use clap::Parser;
use clap::{crate_license, Parser};
use std::{ffi::OsString, path::PathBuf, process::Command, str::FromStr};
use strum::EnumIter;
use thiserror::Error as ThisError;

#[derive(Debug, Parser)]
#[clap(about, author, version)]
#[clap(about, author, license = crate_license!(), version)]
pub(crate) enum Cli {
/// Use a starter file to quickly import or export a configuration.
///
Expand Down

0 comments on commit 1908b00

Please sign in to comment.