Advertisement
Guest User

Untitled

a guest
Nov 12th, 2021
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.32 KB | None | 0 0
  1. echo "Installing Allure"
  2. sudo apt install default-jre
  3. (
  4.   cd /tmp || exit
  5.   curl "https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline/2.16.1/allure-commandline-2.16.1.zip" -o "allure.zip"
  6.   unzip -qq allure.zip
  7.   yes | sudo cp -rf allure-2.16.1 /opt/allure
  8.   rm -rf allure-2.16.1
  9.   rm allure.zip
  10. )
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement