From e32d3d87f0a6ef9e5e33cfb80871ef1fa8103b3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Tue, 27 Jun 2023 17:41:35 +0200 Subject: [PATCH] Fix create-package issue template It was still referencing the old poetry script call syntax, which is not working anymore as of poetry 1.5 --- .github/create-package.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/create-package.md b/.github/create-package.md index 12b187e7f..f53910b32 100644 --- a/.github/create-package.md +++ b/.github/create-package.md @@ -10,7 +10,7 @@ Please create them via: export OSC_PASSWORD=#insert_bugzilla_password pkgs="{{ env.pkgs }}" for pkg in ${pkgs//,/}; do - poetry run ./scratch-build-bot.py --os-version={{ env.OS_VERSION }} --osc-user=$YOUR_USERNAME_HERE \ + poetry run scratch-build-bot --os-version={{ env.OS_VERSION }} --osc-user=$YOUR_USERNAME_HERE \ setup_obs_package --package-name=$pkg done ```