Skip to content

Commit 1b0922d

Browse files
committed
Fix wrong download links in readme
1 parent 93ede62 commit 1b0922d

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ You can also find some additional examples in the [examples](examples/) folder.
3737

3838
## Download and Installation
3939

40-
You can download the latest binaries for Windows, Linux and x86_64 Mac from the [releases](https://github.com/mikechambers/dcli-gha/releases/latest) page.
40+
You can download the latest binaries for Windows, Linux and x86_64 Mac from the [releases](https://github.com/mikechambers/dcli/releases/latest) page.
4141

4242
Just download, place them in your path and run from the command line (use --help to get a list of options). You can find a script [here](https://github.com/mikechambers/dcli/blob/main/tests/) that will run all of the apps to verfiy they are working and in your path.
4343

44-
[![](https://img.shields.io/github/v/release/mikechambers/dcli?style=social)](https://github.com/mikechambers/dcli-gha/releases/latest)
44+
[![](https://img.shields.io/github/v/release/mikechambers/dcli?style=social)](https://github.com/mikechambers/dcli/releases/latest)
4545

4646
**IMPORTANT**: Mac binaries are not signed, which can cause some hassle the first time you run them. You can find info on how to easily run them [here](https://github.com/mikechambers/dcli/wiki/Running-dcli-tools-on-Mac-OS-X).
4747

examples/dclisyncd.ps1

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
$check_interval_seconds = 30
3+
4+
5+
############# program #############
6+
7+
while ($true) {
8+
9+
$output = (dclisync --sync)
10+
11+
Write-Output $output
12+
13+
Start-Sleep -Seconds $check_interval_seconds
14+
}

0 commit comments

Comments
 (0)