From e1612fa3aa15ff77370a4715f1ea66ff0756972d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ritzl?= Date: Mon, 2 Oct 2023 15:51:05 +0200 Subject: [PATCH] Update update.py --- update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.py b/update.py index 35364b44..8bd3720f 100755 --- a/update.py +++ b/update.py @@ -116,7 +116,7 @@ def commit_changes(githubtoken): # only commit if the diff isn't empty, ie there is a change # https://stackoverflow.com/a/8123841/1266551 call("git diff-index --quiet HEAD || git commit -m 'Site changes [skip-ci]'") - call("git push 'https://%s@github.com/defold/awesome-defold.git' HEAD:master" % (githubtoken)) + call("git push 'https://%s@github.com/defold/asset-portal.git' HEAD:master" % (githubtoken)) parser = ArgumentParser()