Skip to content
This repository has been archived by the owner on Nov 6, 2022. It is now read-only.

Commit

Permalink
> Fix executable not waiting while offline installer run all scripts
Browse files Browse the repository at this point in the history
+ New version bootstraper for installer script
  • Loading branch information
trueromanus committed May 7, 2019
1 parent 9b33030 commit f696fbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Binary file modified installer/AnilibriaInstaller.zip
Binary file not shown.
4 changes: 3 additions & 1 deletion installer/app.go
Expand Up @@ -5,6 +5,8 @@ import (
)

func main() {
exec.Command("runinstaller.bat").Start()
cmd := exec.Command("runinstaller.bat")
cmd.Start()
cmd.Wait()
}

0 comments on commit f696fbb

Please sign in to comment.