Merge pull request #1301 from eventualbuddha/chore/cli/remove-unused-fn

chore(cli): remove unused function
This commit is contained in:
Jonathan Kelley 2023-08-06 23:09:28 -07:00 committed by GitHub
commit 56c3dcc437
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -101,13 +101,6 @@ pub enum Platform {
Desktop,
}
/// Ensure the given value for `--public-url` is formatted correctly.
pub fn parse_public_url(val: &str) -> String {
let prefix = if !val.starts_with('/') { "/" } else { "" };
let suffix = if !val.ends_with('/') { "/" } else { "" };
format!("{}{}{}", prefix, val, suffix)
}
/// Config options for the bundling system.
#[derive(Clone, Debug, Default, Deserialize, Parser)]
pub struct ConfigOptsBundle {