-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3108925
commit 6ce0d19
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Copyright (c) LieberLieber Software GmbH | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
|
||
#this scripts downloads and prepares Lemontree.Automation on a Linux machine. | ||
|
||
$LemonTreePackageURL = "https://nexus.lieberlieber.com/repository/lemontree-release/LemonTree.Automation/LemonTree.Automation.Linux.Zip_latest.zip" | ||
|
||
Write-Output "Download LemonTree.Automtion from Repo" | ||
Invoke-WebRequest -URI "$LemonTreePackageURL" -OutFile "LTA.zip" | ||
Expand-Archive "LTA.zip" -DestinationPath ".\LTA\" -Force | ||
|
||
$LemonTreeExe = "./LTA/lemontree.automation" | ||
#workaround because github artifacts logic doesn't maintain properties | ||
chmod +x $LemonTreeExe | ||
|
||
Write-Output "LemonTreeAutomationExecutable=$LemonTreeExe" | ||
|
||
exit 0 |