Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/52-54-00-12-34-56.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-08-21 11:08:33 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-08-21 11:08:33 +0000
commit97696a8d024ee0543d62ac90d467e445f1fbc5af (patch)
treecdb8ea575e10e7a1ab84d38711718d599a0800e1 /profiles/52-54-00-12-34-56.py
parentdc0b6ac9c3e06ed900f802cf37c439e258dddbd1 (diff)
Adjusted the automated test build to send the correct status message to the backend API.
Diffstat (limited to 'profiles/52-54-00-12-34-56.py')
-rw-r--r--profiles/52-54-00-12-34-56.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/profiles/52-54-00-12-34-56.py b/profiles/52-54-00-12-34-56.py
index 870497e5..ea3c5cdc 100644
--- a/profiles/52-54-00-12-34-56.py
+++ b/profiles/52-54-00-12-34-56.py
@@ -36,8 +36,8 @@ with archinstall.Filesystem(harddrive, archinstall.GPT) as fs:
repo = git.Repo('./')
- conditions = {"project" : "archinstall", "profile" : "52-54-00-12-34-56", "status" : "successful", "commit" : repo.head.commit.hexsha[:7]}
- req = urllib.request.Request("https://archlinux.life/build/successful",
+ conditions = {"project" : "archinstall", "profile" : "52-54-00-12-34-56", "status" : "success", "commit" : repo.head.commit.hexsha[:7]}
+ req = urllib.request.Request("https://archlinux.life/build/success",
data=json.dumps(conditions).encode('utf8'),
headers={'content-type': 'application/json'})
try: