Skip to content

Commit

Permalink
🐛 Embed
Browse files Browse the repository at this point in the history
  • Loading branch information
CorentinGS committed Jan 14, 2023
1 parent 7b3e54f commit 5146389
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func buttonClicked(app *gtk.Application, fn func() error) {

func canary() error {
// Run the canary script and display the output in a new window
cmd := exec.Command("bash", "-c", "./script/canary.sh")
cmd := exec.Command("bash", "-c", canaryScript)

cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
Expand All @@ -129,7 +129,7 @@ func ptb() error {
}

func discord() error {
cmd := exec.Command("bash", "-c", "./script/discord.sh")
cmd := exec.Command("bash", "-c", discordScript)

cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
Expand Down

0 comments on commit 5146389

Please sign in to comment.