2
0
mirror of https://github.com/narkoz/hacker-scripts synced 2025-08-22 18:37:10 +00:00

Update smack_my_bitch_up.go

Line 34, added %s to string output
This commit is contained in:
Yoann Duc 2015-12-08 15:07:35 +01:00
parent 30ca9dc928
commit 48f2da4d08

View File

@ -31,7 +31,7 @@ func main(){
response,err := exec.Command("curl","-fSs","-u",TWILIO_ACCOUNT_SID + ":" + TWILIO_AUTH_TOKEN, "-d", "From=" + MY_NUMBER, "-d", "To=" + HER_NUMBER, "-d" , "Body=" + message, "https://api.twilio.com/2010-04-01/Accounts/" + TWILIO_ACCOUNT_SID + "/Messages").Output()
if(err != nil){
fmt.Printf("Failed to send SMS: ",err)
fmt.Printf("Failed to send SMS: %s",err)
return
}