Page 1 of 1

git clone in ahk for create auto-update software

Posted: 09 Nov 2021, 02:06
by ibieel
hello guys, i was thinking about creating an "auto-updater" for my software, so that users wouldn't have to repeat the same step of downloading from github again.

do you have any idea how i can make a "git clone" in AHK to download the files in github and extract?

Re: git clone in ahk for create auto-update software

Posted: 09 Nov 2021, 03:14
by Capn Odin
Why not just use the git cli from ahk using run?

Re: git clone in ahk for create auto-update software

Posted: 09 Nov 2021, 04:11
by ibieel
Capn Odin wrote:
09 Nov 2021, 03:14
Why not just use the git cli from ahk using run?
i used URLDownload + Unzip + CopyFiles + DeleteFiles. its good? is there another way?