From ddc33ca746b5716353581f988b29464200212702 Mon Sep 17 00:00:00 2001 From: Frost Ming Date: Wed, 2 Aug 2023 10:58:52 +0800 Subject: [PATCH] fix: change url Signed-off-by: Frost Ming --- dist/setup-pdm.js | 2 +- src/setup-pdm.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/setup-pdm.js b/dist/setup-pdm.js index 8d6eae3..6d5e30a 100644 --- a/dist/setup-pdm.js +++ b/dist/setup-pdm.js @@ -77608,7 +77608,7 @@ function handleMatchResult(matchedKey, primaryKey) { } // src/setup-pdm.ts -var INSTALL_SCRIPT_URL = "https://pdm.fming.dev/dev/install-pdm.py"; +var INSTALL_SCRIPT_URL = "https://pdm.fming.dev/install-pdm.py"; function getPep582Path(installDir, pythonVersion) { const parsedVersion = (0, import_parse.default)(pythonVersion); if (IS_WINDOWS) { diff --git a/src/setup-pdm.ts b/src/setup-pdm.ts index a49934e..6134dee 100644 --- a/src/setup-pdm.ts +++ b/src/setup-pdm.ts @@ -8,7 +8,7 @@ import semParse from 'semver/functions/parse'; import * as utils from './utils'; import { cacheDependencies } from './caches'; -const INSTALL_SCRIPT_URL = 'https://pdm.fming.dev/dev/install-pdm.py'; +const INSTALL_SCRIPT_URL = 'https://pdm.fming.dev/install-pdm.py'; interface InstallOutput { pdm_version: string; pdm_bin: string;