diff --git a/src/upload.raku b/src/upload.raku index a49f4b1..4a4f944 100755 --- a/src/upload.raku +++ b/src/upload.raku @@ -108,7 +108,8 @@ my method render-index(%index:) { ul(Map, @elements) } -sub MAIN( +#| Upload an entire project to its directory on the website +multi MAIN( $project_dir?, #= Base directory of project to upload, defaults to $*CWD $dest_dir?, #= Destination directory on the remote $katla-config = #= Configuration file to pass to katla @@ -200,3 +201,8 @@ sub MAIN( # Upload files run , "$dir/", "$remote:$web-base/$dest"; } + +#| Upload the highlighting of a single idris file to a content addressable store +#| directory +multi MAIN('file') { +}