anthill

How to find the latest Dependency easily in Anthillpro3 Remoting script

丶灬走出姿态 提交于 2019-12-25 04:48:16
问题 I want to Automate the process of Branch creation in our project.Below are the steps which are being done manually using the Anthill Web UI. In our Anthill we have around 250 Java projects whose workflows are named after their release names like RB-16.4.5. Step 1: Copy the workflow of each project with current branch like RB-16.4.5 . Step 2: Edit the Workflow name to new Branch name like RB-16.4.6 and change the source URL to latest branch name like somelocation/branches/16.4.6/projects

Batch script for loop won't set variable

老子叫甜甜 提交于 2019-11-27 05:18:45
I have a batch script trying to execute out of anthill to get the folder names containing plsql to be compiled. for /F %%a in ('dir /b D:\AHP_WorkDir\var\jobs\projects\rprt_test\rprt_test\plsql') do ( set FOLDER=%%a echo *** PROCESSING FOLDER %FOLDER% *** ) This echos * PROCESSING FOLDER * as if the variable is not getting set, which I'm pretty sure is true after spending way too long on verifying it So...What am I doing wrong? Jonah Bishop This is essentially a duplicate of a question asked earlier today . Here's my answer from said question... You'll want to look at the

Batch script for loop won't set variable

依然范特西╮ 提交于 2019-11-26 11:32:23
问题 I have a batch script trying to execute out of anthill to get the folder names containing plsql to be compiled. for /F %%a in (\'dir /b D:\\AHP_WorkDir\\var\\jobs\\projects\\rprt_test\\rprt_test\\plsql\') do ( set FOLDER=%%a echo *** PROCESSING FOLDER %FOLDER% *** ) This echos * PROCESSING FOLDER * as if the variable is not getting set, which I\'m pretty sure is true after spending way too long on verifying it So...What am I doing wrong? 回答1: This is essentially a duplicate of a question