Skip to content

Commit

Permalink
removed the log of stdout when cloning azule as verified that it now …
Browse files Browse the repository at this point in the history
…works :33
  • Loading branch information
acquitelol committed Dec 26, 2022
1 parent f4e1f21 commit d93e1ea
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified Flowercord_Patcher/packages/flowercord_1.0.0_iphoneos-arm.deb
Binary file not shown.
Binary file modified Fonts/.DS_Store
Binary file not shown.
Binary file modified Fonts/ttf/.DS_Store
Binary file not shown.
Binary file modified Fonts/woff2/.DS_Store
Binary file not shown.
Binary file modified Packs/.DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,11 @@ class Initialiser extends States {
? await Shell.write(`${this.SUCCESS}${this.PINK} Azule${this.GREEN} already exists in ${this.PINK}"${this.CYAN}./${this.PINK}"${this.GREEN}...${this.ENDC}\n`)
: await (async () => {
await Shell.write(`${this.PENDING}${this.PINK} Installing ${this.CYAN}"Azule"${this.PINK}. ${this.BLUE}This may take a while...${this.ENDC}\r`);
await Shell.run(`git clone https://github.com/Al4ise/Azule & wait $!`, async (stderr) => {
await Shell.run(`git clone https://github.com/Al4ise/Azule & wait $!`, async (stderr, stdout) => {
await Shell.write(stderr
? `${this.FAILURE} An error occured while installing ${this.PINK}"${this.CYAN}Azule${this.PINK}"${this.RED}.${this.ENDC}\n`
: `${this.SUCCESS} Successfully installed ${this.PINK}"${this.CYAN}Azule${this.PINK}"${this.GREEN} into ${this.PINK}"${this.CYAN}./${this.PINK}"${this.GREEN}.${this.ENDC}\n`);
await Shell.write(stdout);
});
})();
}
Expand Down
3 changes: 2 additions & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,10 +267,11 @@ class Initialiser extends States {
? await Shell.write(`${this.SUCCESS}${this.PINK} Azule${this.GREEN} already exists in ${this.PINK}"${this.CYAN}./${this.PINK}"${this.GREEN}...${this.ENDC}\n`)
: await (async () => {
await Shell.write(`${this.PENDING}${this.PINK} Installing ${this.CYAN}"Azule"${this.PINK}. ${this.BLUE}This may take a while...${this.ENDC}\r`)
await Shell.run(`git clone https://github.com/Al4ise/Azule & wait $!`, async (stderr) => {
await Shell.run(`git clone https://github.com/Al4ise/Azule & wait $!`, async (stderr, stdout) => {
await Shell.write(stderr
? `${this.FAILURE} An error occured while installing ${this.PINK}"${this.CYAN}Azule${this.PINK}"${this.RED}.${this.ENDC}\n`
: `${this.SUCCESS} Successfully installed ${this.PINK}"${this.CYAN}Azule${this.PINK}"${this.GREEN} into ${this.PINK}"${this.CYAN}./${this.PINK}"${this.GREEN}.${this.ENDC}\n`)
await Shell.write(stdout);
})
})();
}
Expand Down

0 comments on commit d93e1ea

Please sign in to comment.