Skip to content

Commit

Permalink
Fixed check deployment job (paritytech#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgolovkin authored Jul 5, 2022
1 parent 205080e commit aad69be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/deployment_checker/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub(crate) fn check_deployment(config: AppConfig) -> Result<()> {

let data_file = ReactAssetPath::from_fs_path(&config.data_file, &config.public_dir)?;
let url = Url::parse(&pkg_json.homepage)?;
let url = url.join(&data_file.to_string())?;
let url = url.join(&data_file.to_string()[1..])?;

let online = reqwest::blocking::get(url)?.json::<ExportData>()?;
let local = export_specs(&config, RpcFetcher);
Expand Down

0 comments on commit aad69be

Please sign in to comment.