oracle / macaron

Macaron is an extensible supply-chain security analysis framework from Oracle Labs that supports a wide range of build systems and CI/CD services. It can be used to prevent supply chain attacks, detect malicious Python packages, or check conformance to frameworks, such as SLSA. Documentation:
https://oracle.github.io/macaron/
Universal Permissive License v1.0
132 stars 22 forks source link

Installation guide has <tag> variable #333

Open jgsuess opened 1 year ago

jgsuess commented 1 year ago
curl -O https://raw.githubusercontent.com/oracle/macaron/<tag>/scripts/release_scripts/run_macaron.sh
chmod +x run_macaron.sh

in https://oracle.github.io/macaron/pages/installation.html#download fails as <tag> is a variable.

jgsuess commented 1 year ago

needs to be:

export tag=v0.1.1 or export tag=latest

curl -O https://raw.githubusercontent.com/oracle/macaron/${tag}/scripts/release_scripts/run_macaron.sh
chmod +x run_macaron.sh