Skip to content

Instantly share code, notes, and snippets.

@bontusss
Created January 26, 2023 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bontusss/5a5ec3b45a3dbcf063d566cca57568b0 to your computer and use it in GitHub Desktop.
Save bontusss/5a5ec3b45a3dbcf063d566cca57568b0 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo Building domainfinder...
go build -o domainfinder
echo Building synonyms...
cd ../synonyms
go build -o ../domainfinder/lib/synonyms
echo Building available...
cd ../available
go build -o ../domainfinder/lib/available
echo Building sprinkle...
cd ../sprinkle
go build -o ../domainfinder/lib/sprinkle
echo Building coolify...
cd ../coolify
go build -o ../domainfinder/lib/coolify
echo Building domainify...
cd ../domainify
go build -o ../domainfinder/lib/domainify
echo Done.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment