Fix spelling typo so that when "software delete" is run it
doesnt result in an exception.

Test Plan
1. Create patch from build scripts.
2. Run "sudo software delete <patch>".
3. Run "sudo software list" to make sure patch is available.
4. Run "sudo apt-ostree repo list \
       --feed /var/www/pages/updates/debian/rel-23.09/ \
       --release bullseye"

Task: 49229
Story: 2010676

Change-Id: I67f3f726c3d5528d724ae28127423b2bd085d303
Signed-off-by: Charles Short <charles.short@windriver.com>
This commit is contained in:
Charles Short 2024-01-17 15:35:06 +00:00
parent dfd78be7ff
commit f58a2d2ac0
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ def package_remove(feed_dir, packages):
"--release", constants.DEBIAN_RELEASE,
package],
check=True,
capture_outptu=True)
capture_output=True)
except subprocess.CalledProcessError as e:
msg = "Failed to remove package."
info_msg = "\"apt-ostree repo remove\" error: return code %s , Output: %s" \