Skip to content

Commit f636f36

Browse files
committed
Merge branch 'main' of https://github.com/cibere/kick.py
2 parents 8012f9a + 659bdd6 commit f636f36

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

kick/__main__.py

+5-7
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@
44

55

66
@click.group
7-
def cli():
8-
...
7+
def cli(): ...
98

109

1110
@cli.group(name="bypass", help="Stuff regarding the cloudflare bypass script")
12-
def bypass():
13-
...
11+
def bypass(): ...
1412

1513

1614
BYPASS_CODE = """
@@ -96,11 +94,11 @@ def create_file(port: int, fp: str, proxy: str | None) -> None:
9694
@bypass.command(help="installs the script's dependencys", name="install")
9795
def install_dependencys() -> None:
9896
print("Running go init...")
99-
subprocess.run("go mod init example/project-name")
97+
subprocess.run(["go", "mod", "init", "example/project-name"])
10098
print("Installing CycleTLS...")
101-
subprocess.run("go get github.com/Danny-Dasilva/CycleTLS/cycletls")
99+
subprocess.run(["go", "get", "github.com/Danny-Dasilva/CycleTLS/cycletls"])
102100
print("Installing gin...")
103-
subprocess.run("go get github.com/gin-gonic/gin")
101+
subprocess.run(["go", "get", "github.com/gin-gonic/gin"])
104102
print("\n\nAll done. Run `go run filepath` to run the file.")
105103

106104

0 commit comments

Comments
 (0)