awslabs / aws-icons-for-plantuml

PlantUML sprites, macros, and other includes for Amazon Web Services services and resources
Other
887 stars 149 forks source link

404 https://raw.githubusercontent.com/awslabs/aws-icons-for-plantuml/v18.0/dist #75

Closed sholtomaud closed 3 months ago

sholtomaud commented 3 months ago

getting 404 for https://raw.githubusercontent.com/awslabs/aws-icons-for-plantuml/v18.0/dist

image

mdgithub1 commented 3 months ago

Got the same with version of PlantUML 1.2024 Getting the same error using main branch.

hakanson commented 3 months ago

The base URL does get 404...

curl https://raw.githubusercontent.com/awslabs/aws-icons-for-plantuml/v18.0/dist
404: Not Found

..but when I append AWSCommon.puml I get a reply

curl https://raw.githubusercontent.com/awslabs/aws-icons-for-plantuml/v18.0/dist/AWSCommon.puml
' Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
' SPDX-License-Identifier: MIT (For details, see https://github.com/awslabs/aws-icons-for-plantuml/blob/master/LICENSE)

' Dark Mode support
' ##################################
' if $AWS_DARK is not defined, check $PUML_MODE
!if (%not(%variable_exists("$AWS_DARK")))
!if ((%variable_exists("$PUML_MODE") && $PUML_MODE == "dark"))
!$AWS_DARK = true
!endif
!endif
' ensure $AWS_DARK is either true or false
!if %not(%variable_exists("$AWS_DARK") && ($AWS_DARK == true))
!$AWS_DARK = false
!endif

[...]