File tree Expand file tree Collapse file tree 4 files changed +30
-32
lines changed
main/tasks/remotely-pull-git
tests/tasks/remotely-pull-git
toolkit-for-git/remotely-pull-git Expand file tree Collapse file tree 4 files changed +30
-32
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://raw.githubusercontent.com/Microsoft/azure-pipelines-task-lib/master/tasks.schema.json" ,
3+ "id" : " 7be6b2b1-e220-4d29-982b-acb22782b62a" ,
4+ "name" : " remotely-pull-git" ,
5+ "friendlyName" : " Remotely Changes Pull with Git" ,
6+ "description" : " Task used to connect to remote server and pull repository changes using Git." ,
7+ "helpMarkDown" : " " ,
8+ "category" : " Utility" ,
9+ "author" : " V-Network Solutions" ,
10+ "version" : {
11+ "Major" : 0 ,
12+ "Minor" : 2 ,
13+ "Patch" : 0
14+ },
15+ "instanceNameFormat" : " Echo $(samplestring)" ,
16+ "inputs" : [{
17+ "name" : " samplestring" ,
18+ "type" : " string" ,
19+ "label" : " Sample String" ,
20+ "defaultValue" : " " ,
21+ "required" : true ,
22+ "helpMarkDown" : " A sample string"
23+ }],
24+ "execution" : {
25+ "Node10" : {
26+ "target" : " ../index.js"
27+ }
28+ }
29+ }
Original file line number Diff line number Diff line change 11import chai from "chai" ;
22import chaiAsPromised from "chai-as-promised" ;
3- import { RemotelyPullGit } from "./remotelyPullGit " ;
3+ import { RemotelyPullGit } from "../../../main/tasks/remotely-pull-git/RemotelyPullGit " ;
44
55chai . use ( chaiAsPromised ) ;
66const expect = chai . expect ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments