new insructions
All checks were successful
Potlatch Loggers Organization/ComputerKeeper/pipeline/head This commit looks good

This commit is contained in:
Joe Stanley 2022-11-06 20:22:46 -08:00
parent 78ecefbf07
commit 37eb93d111

View File

@ -28,6 +28,7 @@ def main():
f"{HOST}/api/packages/{OWNER}/generic/{PKG_NAME}/{PKG_VERSION}" f"{HOST}/api/packages/{OWNER}/generic/{PKG_NAME}/{PKG_VERSION}"
) )
result.raise_for_status() result.raise_for_status()
# pylint: disable=broad-except
except Exception: except Exception:
# Intentionally Overlook Issues Here # Intentionally Overlook Issues Here
print("No package to delete.") print("No package to delete.")
@ -43,4 +44,4 @@ def main():
result.raise_for_status() result.raise_for_status()
if __name__ == "__main__": if __name__ == "__main__":
main() main()