summaryrefslogtreecommitdiffstats
path: root/src/commands/release.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/release.rs')
-rw-r--r--src/commands/release.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/commands/release.rs b/src/commands/release.rs
index 1f494ce..79a7d21 100644
--- a/src/commands/release.rs
+++ b/src/commands/release.rs
@@ -22,6 +22,7 @@ use crate::db::models as dbmodels;
use crate::config::Configuration;
use crate::db::DbConnectionConfig;
+/// Implementation of the "release" subcommand
pub async fn release(db_connection_config: DbConnectionConfig, config: &Configuration, matches: &ArgMatches) -> Result<()> {
if !(config.releases_directory().exists() && config.releases_directory().is_dir()) {
return Err(anyhow!("Release directory does not exist or does not point to directory: {}", config.releases_directory().display()))