From 351bac2d8216d4bbff597ca48278ffd665297dcf Mon Sep 17 00:00:00 2001 From: SeanStanway-Octopus <98387995+SeanStanway-Octopus@users.noreply.github.com> Date: Fri, 6 Dec 2024 15:18:06 +0000 Subject: [PATCH] Update synchronize-packages.mdx Missing a full stop before the forward slash in the Powershell script call example --- .../octopus-rest-api/examples/feeds/synchronize-packages.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/docs/octopus-rest-api/examples/feeds/synchronize-packages.mdx b/src/pages/docs/octopus-rest-api/examples/feeds/synchronize-packages.mdx index 8226a13789..7a74b20513 100644 --- a/src/pages/docs/octopus-rest-api/examples/feeds/synchronize-packages.mdx +++ b/src/pages/docs/octopus-rest-api/examples/feeds/synchronize-packages.mdx @@ -50,7 +50,7 @@ Provide values for: This example takes packages specified in the `packages.json` file, finding all versions found in the source Octopus instance which have a published date greater than `2021-02-11` and synchronizing them with the destination Octopus instance: ```powershell -/SyncPackages.ps1 ` +./SyncPackages.ps1 ` -VersionSelection AllVersions ` -PackageListFilePath "packages.json" ` -SourceUrl https://source.octopus.app `