Skip to content

Commit

Permalink
feat: add transfertool
Browse files Browse the repository at this point in the history
  • Loading branch information
icaOBU authored Aug 20, 2024
1 parent f50162e commit 73809b0
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions bucket/Transfertool.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"version": "1.4.2.0",
"description": "PS-Tool zur Darstellung von Applikationspfaden mit Zylindern.",
"homepage": "https://icarus-consult.de",
"license": "non-free",
"url": "//promptly-apps.icarus-consult.local/Software/TMXTOOLS/Transfertool/1.4.2.0/Transfertool_1.4.2.0.zip",
"autoupdate": {
"url": "//promptly-apps.icarus-consult.local/Software/TMXTOOLS/WuDoku/{version_placeholder}/WuDoku_{version_placeholder}.zip"
},
"pre_install": [
"if(Get-Process -Name \"tune\" -ErrorAction SilentlyContinue) {",
" Write-Error \"Process Simulate is running. Please close it to continue.\"",
" exit 1",
" }"
],
"post_install": [
"# run install.ps1",
"Set-Variable -Name \"PSScriptRoot\" -Value $dir -Scope Script",
"#.\\install.ps1",
"$command = \"$dir\\install.ps1\"",
"Invoke-Expression \"& $command\""
],
"pre_uninstall": [
"if(Get-Process -Name \"tune\" -ErrorAction SilentlyContinue) {",
" Write-Error \"Process Simulate is running. Please close it to continue.\"",
" exit 1",
" }",
"# run uninstall.ps1",
"$command = \"$dir\\uninstall.ps1\"",
"Invoke-Expression \"& $command\""
],
"post_uninstall": []
}

0 comments on commit 73809b0

Please sign in to comment.