From 216dc9cb833ed3bfcc83af9729b625bca09daba2 Mon Sep 17 00:00:00 2001 From: Abin Simon Date: Wed, 30 Aug 2023 20:55:26 +0530 Subject: [PATCH] Fix export docs for OneDrive and SharePoint (#4157) - Fix docker version: [Related](https://github.com/alcionai/corso/commit/740914821ee1b6f9b685c94b213b233f782fca4e) - Update sidebar to include export docs --- #### Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No #### Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [x] :world_map: Documentation - [ ] :robot: Supportability/Tests - [ ] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup #### Issue(s) * # #### Test Plan - [ ] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- website/Makefile | 2 +- website/sidebars.js | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/website/Makefile b/website/Makefile index 1b26cb2df..537e83e97 100644 --- a/website/Makefile +++ b/website/Makefile @@ -1,6 +1,6 @@ .PHONY: buildimage build dev shell check genclidocs _validatemdgen publish sync -GO_VERSION := 1.19 +GO_VERSION := 1.20 CORSO_BUILD_DIR := /tmp/.corsobuild CORSO_BUILD_CACHE := ${CORSO_BUILD_DIR}/cache CORSO_BUILD_MOD := ${CORSO_BUILD_DIR}/mod diff --git a/website/sidebars.js b/website/sidebars.js index aecffc02a..c46fdb7b3 100644 --- a/website/sidebars.js +++ b/website/sidebars.js @@ -79,7 +79,8 @@ const sidebars = { 'cli/corso-backup-list-onedrive', 'cli/corso-backup-details-onedrive', 'cli/corso-backup-delete-onedrive', - 'cli/corso-restore-onedrive'] + 'cli/corso-restore-onedrive', + 'cli/corso-export-onedrive'] }, { type: 'category', @@ -93,7 +94,8 @@ const sidebars = { 'cli/corso-backup-list-sharepoint', 'cli/corso-backup-details-sharepoint', 'cli/corso-backup-delete-sharepoint', - 'cli/corso-restore-sharepoint'] + 'cli/corso-restore-sharepoint', + 'cli/corso-export-sharepoint'] } ] },