diff --git a/gen_resources/generator/deploy.jl b/gen_resources/generator/deploy.jl index 9bcb024..65203a8 100644 --- a/gen_resources/generator/deploy.jl +++ b/gen_resources/generator/deploy.jl @@ -35,7 +35,7 @@ end function make_new_info(dash_version, old_info) if old_info.dash_version > dash_version - error("You try to generate resources for dash $(dash_version), but $(deploy_repo) alredy contains version $(old_info.dash_version)") + error("You try to generate resources for dash $(dash_version), but $(deploy_repo) already contains version $(old_info.dash_version)") end build_n = old_info.dash_version == dash_version ? old_info.build + 1 : 0 return (dash_version = dash_version, build = build_n) diff --git a/gen_resources/generator/generator.jl b/gen_resources/generator/generator.jl index f8397f9..e56f456 100644 --- a/gen_resources/generator/generator.jl +++ b/gen_resources/generator/generator.jl @@ -31,7 +31,7 @@ function generate(ARGS, sources, build_dir, artifact_file) @info "cloning dash..." v = install_dash(sources["dash"]["url"], sources["dash"]["tag"]) dash_version = VersionNumber(v) - @info "dash succefully installed" dash_version + @info "dash successfully installed" dash_version deploy_repo = sources["deploy"]["repo"] @@ -58,9 +58,9 @@ function generate(ARGS, sources, build_dir, artifact_file) push_repo(deploy_repo, deploy_dir, deploy_tagname(new_info)) @info "repo pushed" - @info "creating tagball..." + @info "creating tarball..." tarball_hash = archive_artifact(artifact_hash, joinpath(build_dir, tarball_name(new_info))) - @info "tagball created" tarball_hash + @info "tarball created" tarball_hash @info "binding artifact..." download_info = ( @@ -68,7 +68,7 @@ function generate(ARGS, sources, build_dir, artifact_file) tarball_hash ) bind_artifact!(artifact_file, "dash_resources", artifact_hash, force = true, download_info = [download_info]) - @info "artifact binding succefully to" artifact_file + @info "artifact binding successfully to" artifact_file cd(deploy_dir) do upload_to_releases(deploy_repo, @@ -79,7 +79,7 @@ function generate(ARGS, sources, build_dir, artifact_file) else unbind_artifact!(artifact_file, "dash_resources") bind_artifact!(artifact_file, "dash_resources", artifact_hash, force = true, download_info = nothing) - @info "artifact binding succefully to" artifact_file + @info "artifact binding successfully to" artifact_file end @info "resource generation done!" diff --git a/src/handler/processors/callback.jl b/src/handler/processors/callback.jl index 4b2c49e..a18cd41 100644 --- a/src/handler/processors/callback.jl +++ b/src/handler/processors/callback.jl @@ -123,7 +123,7 @@ end function validate_return_item(callback_id, i, value, spec::Vector) throw(InvalidCallbackReturnValue( """ - The callback $callback_id ouput $i is a wildcard multi-output. + The callback $callback_id output $i is a wildcard multi-output. Expected the output type to be a list or tuple but got: $value. output spec: $spec